-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Labels
Description
例如:
const itemClass = computed(() => {
if (props.type === 'news') {
return 'w-[220rpx]'
}
return 'w-[340rpx]'
})
目前采取的解决方式:
const itemClass = computed(() => {
let str
if (props.type === 'news') {
str = 'w-[220rpx]'
// #ifdef MP
str = 'w--220rpx-'
// #endif
} else {
str = 'w-[340rpx]'
// #ifdef MP
str = 'w--340rpx-'
// #endif
}
return str
})