Vue.js学习笔记:props传递数据

一.传递数据 1.props 传入单数据 就像 data 同样,prop 能够用在模板内,一样也能够在 vm 实例中像“this.message”这样使用 html <template> <div id="app"> <h1>{{title}}</h1> <child message="hello! Prop"></child> </div> </template> <script> import
相关文章
相关标签/搜索