摘要:
前端入门自学,说错的请大神指点。 Avoid using non-primitive value as key, use string/number value instead.Duplicate keys detected: ‘[object Object]’. This may cause an 阅读全文
摘要:
vue开发项目过程中,会出现类似于:Do not use built-in or reserved HTML elements as component id ······的报错,why? 报错截图示下: 是因为在本地项目对应文件的<script>中,属性name出现了错误的命名方式,导致浏览器控制 阅读全文
Vue router报错:NavigationDuplicated {_name: "NavigationDuplicated", name: "NavigationDuplicated"}的解决方法
摘要:
在main.js下添加: import Router from 'vue-router' Vue.use(Router) const originalPush = Router.prototype.push Router.prototype.push = function push(location 阅读全文