组件 my-time.nvue 在页面list.nvue 中使用,class 失效,无颜色,这段代码直接在list.nvue 页面中使用正常红色
<template>
<view>
<uni-dateformat
:class="['info-label']"
:date="date"
:threshold="[60000, 3600000]"
format="yyyy/MM/dd hh:mm:ss"
/>
</view>
</template>
<style scoped lang="scss">
.info-label {
color: red;
}
</style>
1 个回复
x***@126.com (作者)
之前vue2 + hbuilder 3.99 是正常的,最近迁移到4.56 + vue3 不正常了