Vue程序解释 小旺不正经 2021-11-14 136 阅读1分钟 Vue程序解释 src/mian.js 程序的入口文件 src/App.vue Vue根组件 可以通过render参数从组件渲染 public/index.html 模板文件 new Vue({ // 路由的配置 router, // Vuex 状态管理 store, render: h => h(App) }).$mount('#app') router为路由 components 为组件