小程序自定义组件有类似 vue.js slot-scope 的可复用的插槽吗?
- 小程序自定义组件有类似 vue.js slot-scope 的可复用的插槽吗?
<todo-list v-bind:todos="todos">
<!-- 将 `slotProps` 定义为插槽作用域的名字 -->
<template slot-scope="slotProps">
<!-- 为待办项自定义一个模板,-->
<!-- 通过 `slotProps` 定制每个待办项。-->
<span v-if="slotProps.todo.isComplete">✓</span>
{{ slotProps.todo.text }}
</template>
</todo-list>