mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-06 05:23:46 +08:00
11 lines
217 B
JavaScript
11 lines
217 B
JavaScript
/* 项目启动 */
|
|
import Vue from 'vue'
|
|
import App from './App'
|
|
import router from './router'
|
|
|
|
new Vue({
|
|
router: router,
|
|
render: h => h(App)
|
|
// components: { firstcomponent, secondcomponent }
|
|
}).$mount('#app')
|