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.
16 lines
333 B
16 lines
333 B
import Vue from 'vue'
|
|
import { createPinia, PiniaVuePlugin } from 'pinia'
|
|
import { VueAxios } from './utils/request'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
|
|
import './assets/main.css'
|
|
|
|
Vue.use(PiniaVuePlugin)
|
|
Vue.use(VueAxios)
|
|
|
|
new Vue({
|
|
router,
|
|
pinia: createPinia(),
|
|
render: (h) => h(App)
|
|
}).$mount('#app')
|
|
|