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.

12 lines
283 B

10 months ago
  1. import { createApp } from 'vue'
  2. import { createPinia } from 'pinia'
  3. import "normalize.css"
  4. import App from './App.vue'
  5. import router from './router'
  6. import Antd from 'ant-design-vue';
  7. const app = createApp(App)
  8. app.use(createPinia())
  9. app.use(router)
  10. app.use(Antd)
  11. app.mount('#app')