main.js 372B

1234567891011121314151617181920
  1. import { createApp } from 'vue'
  2. import 'animate.css'
  3. import App from './App.vue'
  4. import store from './store'
  5. import wxsdk from './utils/wx'
  6. import router from './router'
  7. import i18n from './i18n'
  8. import './style.less'
  9. // const { share } = wxsdk(location.href)
  10. const app = createApp(App);
  11. app.use(store);
  12. app.use(router);
  13. app.use(i18n);
  14. app.mount('#app');
  15. // share();