vant-weapp/dist/tag/index.wxs
2021-01-19 10:19:37 +08:00

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,
};