<!-- 自定义组件 fab-head -->
<template>
<view class="fab-head">
<slot>{{ title }}</slot>
</view>
</template>
<script lang="ts" setup>
const props = defineProps({
title: String
})
</script>
<!-- 使用组件 -->
<template>
<fab-head>标题</fab-head>
</template>
j***@163.com (作者)
实际结果:
<view>
<view>标题</view>
</view>
2023-07-11 19:56