main.js 324B

12345678910111213141516
  1. import { createApp } from 'vue'
  2. import Loading from '@/components/loading/index.vue'
  3. import App from './App.vue'
  4. import vant from './vant'
  5. import router from './router'
  6. import store from './store'
  7. const app = createApp(App)
  8. vant(app)
  9. app.use(router)
  10. app.use(store)
  11. app.component('x-loading', Loading);
  12. app.mount('#app')