
报错:[Vue warn]: Property or method "title" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property.
报错:[Vue warn]: Property or method "title" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property.

一直说我的title 未定义
"title" is not defined
后来才发现是少写了vue全局组件里少写了props,这样就导致我的title渲染不到页面上。
然后就研究了一些传值路径,见上图1
学习vue组件的时候,发现传值和以前的v-bind不是很一样,自己画了一个箭头图以便理解。