一个例子学会Vue插槽的使用

简介: 一个例子学会Vue插槽的使用

简介

插槽作用是将子组件某部分内容交给父组件渲染,在子组件中申明占位符,父组件中使用插槽对应。

语法

在子组件标签中增加标签并添加对应插槽相关属性,未指定属性则当做默认插槽填充至默认插槽。

  • \#插槽名称="参数"
  • v-slot:插槽名称="参数"
  • 标签上增加属性 slot="插槽明" slot-scope="参数"

    • vue2.6之后弃用,下面例子中未使用此语法
参数为子组件传递参数的合集,如需直接访问具体使用可展开"{属性1,属性2……}"

实例

父组件

<template>
  <div id="app">
    <div class="container">
      父容器
      <slot-demo>
        <div style="background-color: lightblue;">默认插槽</div>
        <template #abbreviationSlot>
          <div style="background-color: lavender;">
            插槽名:abbreviationSlot
          </div>
        </template>
        <template #abbreviationSlotWithArg="args">
          <div style="background-color: lightcoral;">
            abbreviationSlotWithArg参数:<br/>
            propA:{{ args.argPropA }}<br/>
          </div>
        </template>
        <template #abbreviationSlotWithArg2="{argPropA,argPropB}">
          <div style="background-color: lightseagreen;">
            abbreviationSlotWithArg2参数:<br/>
            propA:{{ argPropA }}<br/>
            propA:{{ argPropB }}<br/>
          </div>
        </template>
        <template v-slot:keywordSlot>
          <div style="background-color: lightgoldenrodyellow;">
            插槽名:keywordSlot
          </div>
        </template>
        <template v-slot:keywordSlotWithArgs="args">
          <div style="background-color: lightcyan;">
            插槽名 keywordSlotWithArgs<br/>
            propB:{{ args.argPropB }}
          </div>
        </template>
      </slot-demo>
      <slot-jsx>
        <template #jsxSlot1="argPropA,argPropB">
          <div style="background-color: lightgreen;">
            jsxSlot1参数:<br/>
            argPropA:{{ argPropA }}<br/>
            argPropB:{{ argPropB }}<br/>
          </div>
        </template>
        <template #jsxSlot2="jsxparam">
          <div style="background-color: lightgreen;">
            jsxSlot2参数:<br/>
            argPropA:{{ jsxparam.jsxPropA }}<br/>
            argPropB:{{ jsxparam.jsxPropB }}<br/>
          </div>
        </template>
      </slot-jsx>
    </div>
  </div>
</template>

<script>
import SlotDemo from "./components/slotDemo/SlotDemo";
import SlotJsx from "./components/slotDemo/SlotJsx";

export default {
  components: {SlotDemo,SlotJsx},
  data() {
    return {};
  },
  mounted() {
  }
};

</script>
<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}

.container {
  border: 1px black solid;
  background: gainsboro;
  display: flex;
  flex-direction: column;
  width: 50%;
}

</style>

模板子组件

文件名称:SlotDemo.vue

<template>
  <div style="border: 1px #2c3e50 solid;background-color: papayawhip">
    子组件
    <slot></slot>
    <slot name="abbreviationSlot"></slot>
    <slot name="abbreviationSlotWithArg" :argPropA="propA" :argPropB="propB"></slot>
    <slot name="abbreviationSlotWithArg2" :argPropA="propA" :argPropB="propB"></slot>
    <slot name="keywordSlot" ></slot>
    <slot name="keywordSlotWithArgs" :argPropA="propA" :argPropB="propB"></slot>
  </div>

</template>

<script>
export default {
  name: 'SlotDemo',
  data(){
    return {
      "propA":"属性A",
      "propB":"属性B"
    };
  }
}
</script>

JSX子组件

文件名称:SlotJsx.js

export default {
    data () {
        return {
            "jsxPropA":"jsx属性A",
            "jsxPropB":"jsx属性B"
        }
    },
    render() {
        return (
            <div style={{color:'red'}}>
                <div>{this.$slots.jsxSlot1(this.jsxPropA,this.jsxPropB)}</div>
                <div>{this.$slots.jsxSlot2({jsxPropA:this.jsxPropA,jsxPropB:this.jsxPropB})}</div>
            </div>
        );
    }
}
通过JSX绑定插槽需要手动合并传递参数如jsxSlot2中参数的传递,不合并则在使用时也需要使用逗号分隔多个参数

其它

在antd-1.x的表格customRender中使用时会发现,插槽参数并没有打包为一个集合,而且也不需要展开参数直接访问即可,但是2.x里就和vue官方的事例用法一致了,找到下面的代码,仅供参考。
customRender传参方式变化。

antd-1.x

components/vc-table/src/TableCell.jsx

//72 行
if (customRender) {
  text = customRender(text, record, index, column);
  if (isInvalidRenderCellText(text)) {
    tdProps.attrs = text.attrs || {};
    tdProps.props = text.props || {};
    tdProps.class = text.class;
    tdProps.style = text.style;
    colSpan = tdProps.attrs.colSpan;
    rowSpan = tdProps.attrs.rowSpan;
    text = text.children;
  }
}

antd-2.x

components/vc-table/src/TableCell.jsx

//90 行
if (customRender) {
  text = customRender({ text, record, index, column });
  if (isInvalidRenderCellText(text)) {
    tdProps = text.props || text.attrs || tdProps;
    ({ colSpan, rowSpan } = tdProps);
    text = text.children;
  }
}

参考资料

https://cn.vuejs.org/guide/extras/render-function.html#rendering-slots

https://cn.vuejs.org/guide/components/slots.html#slot-content-and-outlet

https://juejin.cn/post/7080739513898631181

目录
相关文章
|
3天前
|
JavaScript 前端开发
如何在 Vue 项目中配置 Tree Shaking?
通过以上针对 Webpack 或 Rollup 的配置方法,就可以在 Vue 项目中有效地启用 Tree Shaking,从而优化项目的打包体积,提高项目的性能和加载速度。在实际配置过程中,需要根据项目的具体情况和需求,对配置进行适当的调整和优化。
|
4天前
|
存储 缓存 JavaScript
在 Vue 中使用 computed 和 watch 时,性能问题探讨
本文探讨了在 Vue.js 中使用 computed 计算属性和 watch 监听器时可能遇到的性能问题,并提供了优化建议,帮助开发者提高应用性能。
|
4天前
|
存储 缓存 JavaScript
如何在大型 Vue 应用中有效地管理计算属性和侦听器
在大型 Vue 应用中,合理管理计算属性和侦听器是优化性能和维护性的关键。本文介绍了如何通过模块化、状态管理和避免冗余计算等方法,有效提升应用的响应性和可维护性。
|
4天前
|
存储 缓存 JavaScript
Vue 中 computed 和 watch 的差异
Vue 中的 `computed` 和 `watch` 都用于处理数据变化,但使用场景不同。`computed` 用于计算属性,依赖于其他数据自动更新;`watch` 用于监听数据变化,执行异步或复杂操作。
|
3天前
|
JavaScript 前端开发 UED
vue学习第二章
欢迎来到我的博客!我是一名自学了2年半前端的大一学生,熟悉JavaScript与Vue,目前正在向全栈方向发展。如果你从我的博客中有所收获,欢迎关注我,我将持续更新更多优质文章。你的支持是我最大的动力!🎉🎉🎉
|
5天前
|
存储 JavaScript 开发者
Vue 组件间通信的最佳实践
本文总结了 Vue.js 中组件间通信的多种方法,包括 props、事件、Vuex 状态管理等,帮助开发者选择最适合项目需求的通信方式,提高开发效率和代码可维护性。
|
3天前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript和Vue的大一学生。自学前端2年半,熟悉JavaScript与Vue,正向全栈方向发展。博客内容涵盖Vue基础、列表展示及计数器案例等,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉
|
5天前
|
存储 JavaScript
Vue 组件间如何通信
Vue组件间通信是指在Vue应用中,不同组件之间传递数据和事件的方法。常用的方式有:props、自定义事件、$emit、$attrs、$refs、provide/inject、Vuex等。掌握这些方法可以实现父子组件、兄弟组件及跨级组件间的高效通信。
|
10天前
|
JavaScript
Vue基础知识总结 4:vue组件化开发
Vue基础知识总结 4:vue组件化开发
|
10天前
|
存储 JavaScript
Vue 状态管理工具vuex
Vue 状态管理工具vuex