名为插槽的v-slot
是Vue中更加灵活和强大的插槽机制。基本概念是为组件提供一个额外的插入点(即插槽),以便您可以在组件内部插入自己的内容。v-slot
命名插槽允许您指定插槽的名称,以便可以在组件模板中引用它们。下面web建站小编给大家简单介绍一下!
slotList组件模板
<template> <div> <h2>{{ title }}</h2> <ul> <slot name="item" v-for="item in items" :item="item"></slot> </ul> <slot name="after"></slot> </div> </template>
父组件模板
<template> <div> <todo-list :title="title" :items="items"> <template v-slot:item="props"> <li>{{ props.item }}</li> </template> <template v-slot:after> <p>List ended.</p> </template> </todo-list> </div> </template> <script> import TodoList from './slotList.vue'; export default { name: 'App', components: { TodoList, }, data() { return { title: '列表', items: ['类型1', '类型2', '类型3'], }; }, }; </script>
el-table利用:row-style="rowClass"设置指定行变色
一款免费开源效果酷炫的 Vue / React 大屏数据展示组件库——DataV
vue项目动态设置background背景色,解决颜色被替换问题
标签: v-slot具名插槽
上面是“vue项目中v-slot具名插槽的使用方法”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_4880.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!