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.

17 lines
330 B

7 months ago
7 months ago
7 months ago
7 months ago
  1. import './style.css'
  2. import './assets/main.css'
  3. import { createApp } from 'vue'
  4. import { createPinia } from 'pinia'
  5. import Vant from 'vant'
  6. import App from './App.vue'
  7. import router from './router'
  8. import 'vant/lib/index.css';
  9. const app = createApp(App)
  10. app.use(createPinia())
  11. app.use(router)
  12. app.use(Vant);
  13. app.mount('#app')