12345678910111213141516171819202122232425262728293031 |
- import App from './App';
- // 全局mixins,用于实现setData等功能,请勿删除!';
- import zpMixins from '@/uni_modules/zp-mixins/index.js';
- // #ifndef VUE3
- import Vue from 'vue';
- import share from './utils/share';
- Vue.mixin(share)
- Vue.use(zpMixins);
- import MyTabBar from './components/MyTabbar.vue'
- Vue.component("MyTabBar",MyTabBar)
- Vue.config.productionTip = false;
- App.mpType = 'app';
- const app = new Vue({
- ...App,share
- });
- app.$mount();
- // #endif
- // #ifdef VUE3
- import { createSSRApp } from 'vue';
- export function createApp() {
- const app = createSSRApp(App);
- app.mixin(zpMixins);
- return {
- app
- };
- }
- // #endif
|