摘要: 场景,点击某个按钮,两个子组件交替显示 <div id='root'> <child-one v-if='type "child-one"'></child-one> <child-two v-if='type "child-two"'></child-two> <button @click='ha 阅读全文
posted @ 2018-09-19 06:51 wzndkj 阅读(1095) 评论(0) 推荐(0) 编辑
摘要: 作用域插槽 <div id='root'> <child> <template slot-scope='props'> <h1>{{props.item}}</h1> </template> </child> </div> <script> Vue.component('child',{ data: 阅读全文
posted @ 2018-09-19 06:30 wzndkj 阅读(544) 评论(0) 推荐(0) 编辑