vue
xxx的一天。
乘兴而来
展开
-
vue脚手架2.96卸载失败及新脚手架安装不成功解决方案
黑窗没用 用的git的小黑窗完成此处为重装node 没用上在安装vue脚手架可能并非是那么顺利的,不经意会出现各种ERR,这时可以尝试按照以下步骤进行重安装1、在nodejs官网下载并安装最新版的node;2、更新npm,因为与node绑定安装的npm不一定是最新版的更新npm命令为:npm install -g npmnpm install可能会出现npm ERR! Unexpected end of JSON input while parsing near错误,此时可以使用输入以下命令进行原创 2020-11-03 16:15:57 · 1895 阅读 · 3 评论 -
antD报错 Each record in table should have a unique `key` prop,or set `rowKey` to an unique primary ke
Each record in table should have a unique key prop,or set rowKey to an unique primary key.原因 a-tabel没有rowkey 设置rowkey原创 2019-11-25 19:02:45 · 625 阅读 · 0 评论 -
关于vue报警告 Prop "autocomplete" is passed to component <Anonymous>, but the declared prop name is....
vue报警告 Prop “autocomplete” is passed to component , but the declared prop name is “autoComplete”. Note that HTML attributes are case-insensitive and camelCased props need to use their kebab-case equiv...原创 2019-02-14 15:42:27 · 9480 阅读 · 0 评论 -
关于vue路由登陆权限的判断设置
将需要验证的路由设置meta属性在main.js页面设置路由验证router.beforeEach((to, from, next) =&amp;gt; { if (to.matched.some(record =&amp;gt; record.meta.auth)){ // 判断该路由是否需要登录权限 if (localStorage.getItem(&quot;Authorization&quot;)) {...原创 2019-02-15 10:34:15 · 1097 阅读 · 0 评论