<!-- file.wxml -->
<view style='width:500rpx;height:30px;background-color:{{colorValue}};'>
This is content.
</view>
//file.js
Page({
/**
* 页面的初始数据
*/
data: {
colorValue: 'red'
}
})
运行结果:
<!-- file.wxml -->
<view style='width:500rpx;height:30px;background-color:{{colorValue}};'>
This is content.
</view>
//file.js
Page({
/**
* 页面的初始数据
*/
data: {
colorValue: 'red'
}
})
运行结果: