You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
	
	
		
		
			
	
    
		
			
				
					
						                                | 
						 | 
						import Vue from 'vue'import App from './App'import mixin from '@/common/js/mixin.js';import {sandBox} from './common/js/sandBox.js';import {cookieStorage,isBirthday} from './common/js/utils.js';import * as $shared from '@/common/js/shared.js';
// 每个页面都会进入mixin
Vue.mixin(mixin);// #ifdef H5  
import wechat from './common/js/wechat'  if(wechat.isWechat()){      Vue.prototype.$wechat =wechat;  }  // #endif 
import config from './common/js/config.js'  import store from '@/store/index.js';Vue.config.productionTip = falseimport uView from 'uview-ui';Vue.use(uView);
// 将无数据组件注入全局
import lfNocontent from '@/components/lf-nocontent/lf-nocontent.vue';Vue.component('lf-nocontent', lfNocontent);
Vue.prototype.$shared = $shared;Vue.prototype.$http = sandBox;Vue.prototype.$cookieStorage = cookieStorage;Vue.prototype.$config = config;Vue.prototype.$store = store;App.mpType = 'app'
const app = new Vue({    ...App,	store})app.$mount()
  |