vue 2.6以上 v-slot的改变为你带来更加明确的代码

本文介绍了Vue 2.6版本中v-slot的改进,使得插槽的使用更加明确。v-slot简化了作用域插槽的语法,允许父组件访问子组件的数据。通过示例展示了如何使用插槽prop,解构插槽Prop,以及动态和具名插槽的用法,帮助开发者更好地理解和利用这一新特性。
摘要由CSDN通过智能技术生成

转自vue官方文档
https://cn.vuejs.org/v2/guide/components-slots.html#作用域插槽

前文

v-slot 的出现让 slot这个插槽变得更加明确,本人认为这个插槽使用起来更加明确且简单
尤其是缩写的出现, << # >>

作用域插槽

自 2.6.0 起有所更新。已废弃的使用 slot-scope 特性的语法在这里。

有时让插槽内容能够访问子组件中才有的数据是很有用的。例如,设想一个带有如下模板的 组件:

<span>
  <slot>{
  { user.lastName }}</slot>
</span>

我们想让它的后备内容显示用户的名,以取代正常情况下用户的姓,如下:

<current-user>
  {
  { user.firstName }}
</current-user>

然而上述代码不会正常工作,因为只有 组件可以访问到 user 而我们提供的内容是在父级渲染的。

为了让 user 在父级的插槽内容可用,我们可以将 user 作为一个 元素的特性绑定上去:

<span>
  <slot v-bind:us
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Vue中,插槽(slot)是一种用于组件之间内容分发的机制。它允许父组件向子组件传递内容,使得子组件可以根据需要展示不同的内容。插槽可以用于传递任意类型的内容,包括HTML、文本和其他组件。 Vue中的插槽有三种使用方式:slotslot-scope和v-slot。 1. slotslot标签是最基本的插槽使用方式。父组件可以在子组件的slot标签中放置内容,这些内容将会替换子组件中具名插槽的位置。例如: ```html <!-- 父组件 --> <template> <child-component> <template v-slot:header> <h1>这是标题</h1> </template> </child-component> </template> <!-- 子组件 --> <template> <div> <slot name="header"></slot> <!-- 其他子组件内容 --> </div> </template> ``` 上述代码中,父组件在子组件的插槽中放置了一个标题,子组件通过`<slot name="header"></slot>`来展示这个插槽的内容。 2. slot-scope:slot-scope指令用于在插槽中接收父组件传递的数据。通过这种方式,子组件可以访问父组件的数据,并在插槽中进行处理。例如: ```html <!-- 父组件 --> <template> <child-component> <template v-slot:default="slotProps"> <h1>{{ slotProps.title }}</h1> <p>{{ slotProps.content }}</p> </template> </child-component> </template> <!-- 子组件 --> <template> <div> <slot :title="title" :content="content"></slot> <!-- 其他子组件内容 --> </div> </template> <script> export default { data() { return { title: '这是标题', content: '这是内容' }; } }; </script> ``` 在上述代码中,父组件通过`v-slot:default="slotProps"`将数据传递给子组件的插槽,并在插槽中使用`slotProps`来访问这些数据。 3. v-slot:v-slot指令是Vue2.6版本及以上引入的新特性,用于简化插槽的语法。它可以直接在子组件上使用,而不需要使用template标签。例如: ```html <!-- 父组件 --> <template> <child-component> <template #header> <h1>这是标题</h1> </template> </child-component> </template> <!-- 子组件 --> <template> <div> <slot name="header"></slot> <!-- 其他子组件内容 --> </div> </template> ``` 在上述代码中,父组件使用`#header`来定义插槽,并在子组件中使用`<slot name="header"></slot>`来展示插槽的内容。 总结一下,slot用于定义插槽的位置,slot-scope用于接收父组件传递的数据,并在插槽中进行处理,v-slot是对插槽语法的简化。这些插槽的使用方式可以根据具体需求选择适合的方式。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值