字父专题

2022/8/30 了解props内default默认,type类型,required必填证实是否绑定了init ,组件的三个阶段,组件之间的共享(父子,字父)

props是只读数据。声明了自定义属性props的init转存在data的count内即可   <template><div><h5>count组件</h5><p>count是:{{count}}</p><button @click="count++">增加 </button></div></template><script>export default {props : ['init']