新人,刚开始学习vue+webpack,一步步自己搭建。运行页面后,编译没有报错,页面也没有报错,貌似vue实例已经成功创建了。index.html里的
上面是index.html
上面是App.vueimportVuefrom'vue';importrouterfrom'./router';importstorefrom'./store';importAppfrom'../../../components/App.vue';newVue({el:'#app',router,store,components:{App},template:"", created(){this.$router.push({name:"index"});console.log("create",this);},});{{name}} 上面是index.vueimportVuefrom'vue';importVueRouterfrom'vue-router';importindexfrom'../../../../components/index.vue';Vue.use(VueRouter);constroutes=[{path:"/index",name:"index",component:index},];exportdefaultnewVueRouter({routes})前面漏了router配置,现在补上。结果实际页面上显示的是: 控制台里输出了“created”那句话,没有输出“index",我就想不明白了,不报错的话,为什么index.vue里面的内容会没有生成,我觉得是模板指向之类的问题错了,但是搜了很久也想不到原因,请各位指点下。
森栏
呼如林
相关分类