web-interview icon indicating copy to clipboard operation
web-interview copied to clipboard

[vue] 8.vue slot是做什么的?

Open qiilee opened this issue 6 years ago • 2 comments
trafficstars

答案:主要是让组件的可扩展性更强,简单点说就是,能够在组件内写其他内容

qiilee avatar Oct 08 '19 05:10 qiilee

插槽? 插孔???

asdf-wq avatar Oct 24 '19 01:10 asdf-wq

// CompOne组件创建时候

<slot name="header"></slot> <slot name="body"></slot>

// 组件使用的时候 <comp-one> <span slot="header"> this is header</span> // 对应CompOne件中的位置 <span slot="body"> this is body</span> //对应CompOne件中的位置 </comp-one>

Yuaao avatar Jan 08 '20 16:01 Yuaao