1、新建一个自定组件a.vue:
<script lang="ts" setup>
<template>
<view><slot></slot></view>
</template>
</script>
2、新建一个页面test.nvue
<script lang="ts" setup>
import avue from "./a.vue"
<template>
<view>
<avue>
<scroll-view scroll-y style="height:100rpx">
<view style="height:1000rpx;background:red"></view>
</scroll-view>
</avue>
</view>
</template>
</script>
1 个回复
tmui (作者)
不修复么?