子组件
<template>
<view @touchmove.stop.prevent>
<view :style="{height: height + 'rpx'}">
<slot></slot>
</view>
</view>
</template>
<script>
export default {
name:"test",
props: {
height: {
type: Number,
default: 0
}
}
};
</script>
父组件
<template>
<view>
<test height="1000"></test>
</view>
</template>
该代码在开发环境下显示正常(运行在chrome)并符合预期,但编译发布为H5后高度属性丢失,将单位换为px后可正常展示
2 个回复
ThorUI_echo - 开源项目: https://thorui.cn/doc
此问题已被官方复现,等待修复,详见 https://ask.dcloud.net.cn/question/136238
DCloud_UNI_Anne
HBuilderX3.3.3 已修复,请升级