Vue程序解释

136 阅读1分钟

Vue程序解释

image-20211113163058647

src/mian.js 程序的入口文件

src/App.vue Vue根组件 可以通过render参数从组件渲染

public/index.html 模板文件


new Vue({
// 路由的配置
  router,
// Vuex 状态管理
  store,
  render: h => h(App)
}).$mount('#app')

image-20211113163537816

router为路由

components 为组件