mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
14 lines
293 B
XML
14 lines
293 B
XML
/* eslint-disable */
|
|
var style = require('../wxs/style.wxs');
|
|
|
|
function rootStyle(data) {
|
|
return style({
|
|
'background-color': data.plain ? '' : data.color,
|
|
color: data.textColor || data.plain ? data.textColor || data.color : '',
|
|
});
|
|
}
|
|
|
|
module.exports = {
|
|
rootStyle: rootStyle,
|
|
};
|