mirror of
https://github.com/lstoeferle/vite-vue2-starter
synced 2025-05-24 02:48:07 +08:00
16 lines
250 B
TypeScript
16 lines
250 B
TypeScript
import Vue from 'vue'
|
|
import App from '@/App.vue'
|
|
|
|
import 'windi.css'
|
|
import router from '@/router'
|
|
|
|
Vue.config.productionTip = false
|
|
Vue.config.devtools = true
|
|
|
|
/* eslint-disable no-new */
|
|
new Vue({
|
|
el: '#app',
|
|
router,
|
|
render: h => h(App),
|
|
})
|