uniapp组件封装之slot(插槽)使用
Posted 前端薛小帅
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uniapp组件封装之slot(插槽)使用相关的知识,希望对你有一定的参考价值。
需求:我们需要封装一个组件A,当父组件调用该组件时,可以传入插槽a,并且可以使用组件A抛出来的数据
<!-- 组件A -->
<template>
<view>
Hello World!
<!-- 插槽a -->
<slot name="a" :scope=" message:'抛出来的数据' "></slot>
</view>
</template>
<!-- 父组件 -->
<template>
<A>
<view slot="a" slot-scope=" scope ">
<!-- 这样就可以渲染出来我们组件A通过插槽抛给父组件的message -->
scope.message
</view>
</A>
</template>
欢迎关注我的公众号: 欢迎关注我的抖音:
以上是关于uniapp组件封装之slot(插槽)使用的主要内容,如果未能解决你的问题,请参考以下文章