我试了下sample,发现image组件默认给图片设置的高度在小程序里是320px,这个是多余的,导致我的class也无法生效,应该提供属性能让我设置宽度,高度,但看了文档image没有这些属性,那么怎么才能让它不要这么自作聪明地设置高度?
<template>
<view class="content">
<image class="logo" src="../../static/logo.png" mode="widthFix"></image>
<view>
<text class="title">{{ title }}</text>
<br/>
<text class="title">Current time : {{ time }}</text>
<button @click="gotoUi()">去uni-ui</button>
</view>
</view>
</template>
f***@163.com (作者)
我后来试了下,不设置mode的确不会设置style,但如果连width,height都不提供,用起来不方便,不确定是不是小程序里也不提供。回复这么快谢谢了
2022-04-02 14:25