vue-router 中router-view不能渲染的解决方法
程序员文章站
2022-10-11 12:35:47
最近在做一个vue的项目,其中使用了vue2.0,vue-router2.0。在使用vue-router的时候跳了一个很大的坑,router-view不能渲染,花费了好多时...
最近在做一个vue的项目,其中使用了vue2.0,vue-router2.0。在使用vue-router的时候跳了一个很大的坑,router-view不能渲染,花费了好多时间终于发现了原因。
项目目录结构
其中main.js
import vue from 'vue'; import app from './app'; import router from './router'; /* eslint-disable no-new */ new vue({ el: '#app', router, render: h => h(app) });
app.vue
<template> <div id="app"> <div class="tab"> <div class="tab-item"> <router-link to="/goods">商品</router-link> </div> <div class="tab-item"> <router-link to="/ratings">评论</router-link> </div> <div class="tab-item"> <router-link to="/seller">商家</router-link> </div> </div> <div> <router-view></router-view> </div> </div> </template> <script> export default { name: 'app', components: { } }; </script> <style lang="stylus" rel="stylesheet/stylus"> .tab display: flex width: 100% height: 40px line-height: 40px .tab-item flex: 1 text-align: center & > a display: block </style>
router/index.js
import vue from 'vue'; import vuerouter from 'vue-router'; import goods from '../components/goods/goods.vue'; import ratings from '../components/ratings/ratings.vue'; import seller from '../components/seller/seller.vue'; vue.use(vuerouter); const routes = [ { path: '/goods', component: goods }, { path: '/ratings', component: ratings }, { path: '/seller', component: seller }, { path: '*', redirect: '/goods' } ]; const router = new vuerouter({ routes: routes //注意是routes而不是routers,坑就在这里 }); export default router;
其中在index.js中使用了各种方法,最后查看文档发现原来是routes惹的祸,每次都写的是routers,导致路由根本就没有导入进去,所以在渲染的时候一直不能显示content。如下官方文档中的例子:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇: 春季远离疾病吃什么 三药膳防病最有效
推荐阅读
-
浅析jquery ajax异步调用方法中不能给全局变量赋值的原因及解决方法
-
关于BootStrap modal 在IOS9中不能弹出的解决方法(IOS 9 bootstrap modal ios 9 noticework)
-
父组件中vuex方法更新state子组件不能及时更新并渲染的完美解决方法
-
php中XMLHttpRequest(Ajax)不能设置自定义的Referer的解决方法
-
php 字符串中的 换行符无效、不能换行的解决方法
-
MySQL中因字段字符集不同导致索引不能命中的解决方法
-
python中不能连接超时的问题及解决方法
-
angular4中*ngFor不能对返回来的对象进行循环的解决方法
-
量产U盘在845GV主板中不能启动的解决方法
-
SecureCRT远程连接Linux下的sqlplus中退格键不能使用之解决方法