perf(tag): use wxs (#3894)

This commit is contained in:
rex 2020-12-22 20:50:30 +08:00 committed by GitHub
parent 5daa5cddfe
commit 2d94ddf5e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

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