一、数据为渲染
Method "components" has type "object" in the component definition.
解决:methods方法写在 components 之前
原因:将components即组建注册写在了methods之后导致的,
"components"是注册子组件,会将其挂在到vm上,
"methods"里是方法定义的地方,触发后执行,
搞清楚功能就好理解了
解决vue-router报NavigationDuplicated: Avoided redundant navigation to current location 的问题
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
写在定义路由文件里的Vue.use(VueRouter)后,基本上都是router/index.js文件里
二、添加公钥失败,
添加公钥后,查看是否添加成功,结果报错找不到
原因是缺少与本地生成链接的文件(C:\Users\Administrator.ssh)里的known_hosts,
有时第一次链接会出现这种情况,执行yes即可