1
0
mirror of https://gitee.com/vant-contrib/vant-weapp.git synced 2025-04-27 11:56:39 +08:00
2020-12-18 15:29:19 +08:00

15 lines
284 B
XML

/* eslint-disable */
var style = require('../wxs/style.wxs');
var addUnit = require('../wxs/add-unit.wxs');
function barStyle(barHeight, activeColor) {
return style({
height: addUnit(barHeight),
background: activeColor,
});
}
module.exports = {
barStyle: barStyle,
};