slots-composition.uvue 491 字节
Newer Older
1
<template>
D
DCloud_LXH 已提交
2 3 4
  <view class="content">
    <child>
      <template v-slot:header="slotProps">
DCloud-WZF's avatar
DCloud-WZF 已提交
5
        <view class="header">{{ slotProps.msg }}</view>
D
DCloud_LXH 已提交
6 7 8 9 10 11 12 13 14
      </template>
      <template v-slot:default="{ msg }">
        <view class="main">{{ msg }}</view>
      </template>
      <template #footer="{ msg: text }">
        <view class="footer">{{ text }}</view>
      </template>
    </child>
  </view>
15 16 17
</template>

<script setup lang="uts">
D
DCloud_LXH 已提交
18
import child from './child-composition.uvue'
19
</script>