vue prop属性
Posted liuyinlei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue prop属性相关的知识,希望对你有一定的参考价值。
1.给子组件传递属性,例如:
Vue.component(‘child‘,{ props:[‘message‘], template:‘<span>{{ message }}</span>‘ }); new Vue({ el: ‘#proptest‘ }) //html <div id= "proptest"> <child message="hello!"></child> </div> //show <div id= "proptest"> <span>hello</span> </div>
2.动态prop属性:
<div id= "proptest"> <!-- v-model表单输入绑定 input和textarea标签用--> <input v-model="parrentMsg"> <br> <div > <!--my-message 绑定到父组件属性 --> <child :my-message="parrentMsg"></child> </div> </div> <script type="text/javascript"> Vue.component(‘child‘,{ props:[‘myMessage‘], template:‘<span>{{ myMessage }}</span>‘ }); new Vue({ el: ‘#proptest‘, data:{ "parrentMsg":"hello" } }) </script>
以上是关于vue prop属性的主要内容,如果未能解决你的问题,请参考以下文章
Vue子组件(deep)深度监听props对象属性无效的解决办法