1234567891011121314151617181920 |
- import { createApp } from 'vue'
- import 'animate.css'
-
- import App from './App.vue'
- import store from './store'
- import wxsdk from './utils/wx'
- import router from './router'
- import i18n from './i18n'
-
-
- import './style.less'
- // const { share } = wxsdk(location.href)
-
- const app = createApp(App);
- app.use(store);
- app.use(router);
- app.use(i18n);
- app.mount('#app');
-
- // share();
|