
vue
Prpr_Saber
这个作者很懒,什么都没留下…
展开
-
Vue | Failed to mount component: template or render function not defined
问题起因:我把vue官网github上的一个项目的src目录直接替换到我的项目中,然后执行npm脚本,顺利通过,但是Chrome显示空白,控制台报错 Failed to mount component: template or render function not defined。首先说明我的环境:所有依赖都是本地安装。解决办法:检查两个项目中的package.jso...原创 2018-10-04 14:06:50 · 3474 阅读 · 0 评论 -
Vue | tab导航
之前看bootstrap的时候就觉得它的轮播导航很好用,最近又在vue官网看到个tab导航,觉得很不错网址https://jsfiddle.net/chrisvfritz/Lp20op9o/然后被我用vue-cli改了改(其实就是复制粘贴),像个正常的页面了,还添加了我自己的信息(逃 github地址[vue-tabpage]https://github.com/Saber2pr/...原创 2018-10-07 14:07:46 · 2168 阅读 · 0 评论 -
Vue | 父子组件传递数据 slot-scope
父组件 Parent.vue// Parent.vueimport child from './child'export default { components: { child }}子组件 child.vue// child.vueexport default { props: { msg: String }}1. 现在父组件Pa...原创 2018-10-07 15:38:42 · 2488 阅读 · 0 评论 -
Vue | using non-primitive value as key, use string/number value instead.
<div v-for="item in items" :key="item">我这里的items是一个对象,item也是一个对象,这个报错意思就是,key中的变量必须是字符串或者是数字类型,解决办法,在item后随便添加个属性比如:<div v-for="item in items" :key="item.string"...原创 2018-10-08 22:43:32 · 882 阅读 · 0 评论