vue组件开发之组件插槽

组件插槽 做用 父组件向子组件传递内容html 基本用法 插槽位置 Vue.component('alert-box',{ template:` <div class="demo-alert-box"> <strong>Error!</strong> <slot></slot>//这就是插槽 </div> ` }) 插槽内容 Something bad happened. Somet
相关文章
相关标签/搜索