vue项目启动顺序

1、首先访问 index.html  

        http://localhost:8080  默认加载的就是 index.html
2、进入 main.js 入口文件,main文件会初始化一个组件,就是  App 组件

new Vue({
  router,
  store,
  render: h => h(App)
}).$mount('#app')


3、通过 路由中 index.js 文件 匹配 url 从而展示 组件,然后通过组件中的 App.js 中的 router-view 组件中 显示组件才开始初始化

你可能感兴趣的:(vue.js)