mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
perf(tag): use wxs (#3894)
This commit is contained in:
parent
5daa5cddfe
commit
2d94ddf5e3
@ -1,8 +1,9 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
<wxs src="./index.wxs" module="computed" />
|
||||
|
||||
<view
|
||||
class="custom-class {{ utils.bem('tag', [type, size, { mark, plain, round }]) }}"
|
||||
style="{{ color && !plain ? 'background-color: ' + color + ';' : '' }}{{ textColor || (color && plain) ? 'color: ' + (textColor || color) : '' }}"
|
||||
style="{{ computed.rootStyle({ plain, color, textColor }) }}"
|
||||
>
|
||||
<slot />
|
||||
<van-icon
|
||||
|
13
packages/tag/index.wxs
Normal file
13
packages/tag/index.wxs
Normal file
@ -0,0 +1,13 @@
|
||||
/* 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,
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user