代碼如下 <div id="box6"> <my-component2 :showInfor="hello"></my-component2> <my-component2 :showInfor="hi"></my-component2> </div> <script type="text/javascript"> Vue.component('my-component2',{ props: ['showInfor'], template: "<div><h4>{{showInfor}}</h4></div>", computed: { showInforRes: function(){ return this.showInfor+" world!" } } }) var com2 = new Vue({ el: '#box6' })</script>報錯如下
學習vue.js組件使用props屬性報錯,按照官方文檔寫,但報錯
梵蒂岡之花
2018-11-13 11:14:47