mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[improvement] use wxs.bem instead of computed classNames (#1051)
This commit is contained in:
parent
15576ab95a
commit
339df6c0e6
@ -24,18 +24,6 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
computed: {
|
||||||
iconClass(): string {
|
|
||||||
const { disabled, value, shape } = this.data;
|
|
||||||
return this.classNames(
|
|
||||||
'van-checkbox__icon',
|
|
||||||
`van-checkbox__icon--${shape}`,
|
|
||||||
{
|
|
||||||
'van-checkbox__icon--disabled': disabled,
|
|
||||||
'van-checkbox__icon--checked': value
|
|
||||||
}
|
|
||||||
);
|
|
||||||
},
|
|
||||||
|
|
||||||
iconStyle(): string {
|
iconStyle(): string {
|
||||||
const { value, disabled, checkedColor } = this.data;
|
const { value, disabled, checkedColor } = this.data;
|
||||||
if (checkedColor && value && !disabled) {
|
if (checkedColor && value && !disabled) {
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
|
||||||
<view class="van-checkbox custom-class">
|
<view class="van-checkbox custom-class">
|
||||||
<view class="van-checkbox__icon-wrap" bindtap="toggle">
|
<view class="van-checkbox__icon-wrap" bindtap="toggle">
|
||||||
<slot wx:if="{{ useIconSlot }}" name="icon" />
|
<slot wx:if="{{ useIconSlot }}" name="icon" />
|
||||||
<van-icon
|
<van-icon
|
||||||
wx:else
|
wx:else
|
||||||
name="success"
|
name="success"
|
||||||
class="{{ iconClass }}"
|
class="{{ utils.bem('checkbox__icon', [shape, { disabled, checked: value }]) }}"
|
||||||
style="{{ iconStyle }}"
|
style="{{ iconStyle }}"
|
||||||
custom-class="icon-class"
|
custom-class="icon-class"
|
||||||
custom-style="line-height: 20px;"
|
custom-style="line-height: 20px;"
|
||||||
|
@ -15,16 +15,6 @@ VantComponent({
|
|||||||
style: ''
|
style: ''
|
||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
|
||||||
classes(): string {
|
|
||||||
const { span, offset } = this.data;
|
|
||||||
return this.classNames('van-col', {
|
|
||||||
[`van-col--${span}`]: span,
|
|
||||||
[`van-col--offset-${offset}`]: offset
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
setGutter(gutter: number) {
|
setGutter(gutter: number) {
|
||||||
const padding = `${gutter / 2}px`;
|
const padding = `${gutter / 2}px`;
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
|
||||||
<view
|
<view
|
||||||
class="custom-class {{ classes }}"
|
class="custom-class {{ utils.bem('col', [span]) }} {{ offset ? 'van-col--offset-' + offset : '' }}"
|
||||||
style="{{ style }}"
|
style="{{ style }}"
|
||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
|
@ -12,11 +12,11 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
name: [String, Number],
|
name: null,
|
||||||
|
title: null,
|
||||||
|
value: null,
|
||||||
icon: String,
|
icon: String,
|
||||||
label: String,
|
label: String,
|
||||||
title: [String, Number],
|
|
||||||
value: [String, Number],
|
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
border: {
|
border: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
@ -33,16 +33,6 @@ VantComponent({
|
|||||||
expanded: false
|
expanded: false
|
||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
|
||||||
titleClass() {
|
|
||||||
const { disabled, expanded } = this.data;
|
|
||||||
return this.classNames('van-collapse-item__title', {
|
|
||||||
'van-collapse-item__title--disabled': disabled,
|
|
||||||
'van-collapse-item__title--expanded': expanded
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
updateExpanded() {
|
updateExpanded() {
|
||||||
if (!this.parent) {
|
if (!this.parent) {
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
|
||||||
<view class="van-collapse-item van-hairline--top custom-class">
|
<view class="van-collapse-item van-hairline--top custom-class">
|
||||||
<van-cell
|
<van-cell
|
||||||
title="{{ title }}"
|
title="{{ title }}"
|
||||||
@ -6,7 +8,7 @@
|
|||||||
value="{{ value }}"
|
value="{{ value }}"
|
||||||
label="{{ label }}"
|
label="{{ label }}"
|
||||||
border="{{ border && expanded }}"
|
border="{{ border && expanded }}"
|
||||||
class="{{ titleClass }}"
|
class="{{ utils.bem('collapse-item__title', { disabled, expanded }) }}"
|
||||||
right-icon-class="van-cell__right-icon"
|
right-icon-class="van-cell__right-icon"
|
||||||
custom-class="van-cell"
|
custom-class="van-cell"
|
||||||
bind:click="onClick"
|
bind:click="onClick"
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
const hasOwn = {}.hasOwnProperty;
|
|
||||||
|
|
||||||
export function classNames(): string {
|
|
||||||
const classes = [];
|
|
||||||
|
|
||||||
for (let i = 0; i < arguments.length; i++) {
|
|
||||||
const arg = arguments[i];
|
|
||||||
if (!arg) continue;
|
|
||||||
|
|
||||||
const argType = typeof arg;
|
|
||||||
|
|
||||||
if (argType === 'string' || argType === 'number') {
|
|
||||||
classes.push(arg);
|
|
||||||
} else if (Array.isArray(arg) && arg.length) {
|
|
||||||
const inner = classNames.apply(null, arg);
|
|
||||||
if (inner) {
|
|
||||||
classes.push(inner);
|
|
||||||
}
|
|
||||||
} else if (argType === 'object') {
|
|
||||||
for (const key in arg) {
|
|
||||||
if (hasOwn.call(arg, key) && arg[key]) {
|
|
||||||
classes.push(key);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return classes.join(' ');
|
|
||||||
};
|
|
@ -37,6 +37,10 @@
|
|||||||
&--right {
|
&--right {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&--error {
|
||||||
|
color: @red;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__clear-root {
|
&__clear-root {
|
||||||
@ -78,8 +82,4 @@
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
&--error {
|
|
||||||
color: @red;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -64,18 +64,6 @@ VantComponent({
|
|||||||
showClear: false
|
showClear: false
|
||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
|
||||||
inputClass(): string {
|
|
||||||
const { data } = this;
|
|
||||||
return this.classNames('input-class', 'van-field__input', {
|
|
||||||
'van-field--error': data.error,
|
|
||||||
'van-field__textarea': data.type === 'textarea',
|
|
||||||
'van-field__input--disabled': data.disabled,
|
|
||||||
[`van-field__input--${data.inputAlign}`]: data.inputAlign
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
beforeCreate() {
|
beforeCreate() {
|
||||||
this.focused = false;
|
this.focused = false;
|
||||||
},
|
},
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
|
||||||
<van-cell
|
<van-cell
|
||||||
icon="{{ leftIcon }}"
|
icon="{{ leftIcon }}"
|
||||||
title="{{ label }}"
|
title="{{ label }}"
|
||||||
@ -14,7 +16,7 @@
|
|||||||
<view class="van-field__body {{ type === 'textarea' ? 'van-field__body--textarea' : '' }}">
|
<view class="van-field__body {{ type === 'textarea' ? 'van-field__body--textarea' : '' }}">
|
||||||
<textarea
|
<textarea
|
||||||
wx:if="{{ type === 'textarea' }}"
|
wx:if="{{ type === 'textarea' }}"
|
||||||
class="{{ inputClass }}"
|
class="input-class {{ utils.bem('field__input', [inputAlign, { disabled, error }]) }}"
|
||||||
fixed="{{ fixed }}"
|
fixed="{{ fixed }}"
|
||||||
focus="{{ focus }}"
|
focus="{{ focus }}"
|
||||||
value="{{ value }}"
|
value="{{ value }}"
|
||||||
@ -23,7 +25,7 @@
|
|||||||
auto-height="{{ autosize }}"
|
auto-height="{{ autosize }}"
|
||||||
placeholder="{{ placeholder }}"
|
placeholder="{{ placeholder }}"
|
||||||
placeholder-style="{{ placeholderStyle }}"
|
placeholder-style="{{ placeholderStyle }}"
|
||||||
placeholder-class="{{ error ? 'van-field--error' : '' }}"
|
placeholder-class="{{ error ? 'van-field__input--error' : '' }}"
|
||||||
cursor-spacing="{{ cursorSpacing }}"
|
cursor-spacing="{{ cursorSpacing }}"
|
||||||
adjust-position="{{ adjustPosition }}"
|
adjust-position="{{ adjustPosition }}"
|
||||||
show-confirm-bar="{{ showConfirmBar }}"
|
show-confirm-bar="{{ showConfirmBar }}"
|
||||||
@ -34,7 +36,7 @@
|
|||||||
/>
|
/>
|
||||||
<input
|
<input
|
||||||
wx:else
|
wx:else
|
||||||
class="{{ inputClass }}"
|
class="input-class {{ utils.bem('field__input', [inputAlign, { disabled, error }]) }}"
|
||||||
type="{{ type }}"
|
type="{{ type }}"
|
||||||
focus="{{ focus }}"
|
focus="{{ focus }}"
|
||||||
value="{{ value }}"
|
value="{{ value }}"
|
||||||
@ -42,7 +44,7 @@
|
|||||||
maxlength="{{ maxlength }}"
|
maxlength="{{ maxlength }}"
|
||||||
placeholder="{{ placeholder }}"
|
placeholder="{{ placeholder }}"
|
||||||
placeholder-style="{{ placeholderStyle }}"
|
placeholder-style="{{ placeholderStyle }}"
|
||||||
placeholder-class="{{ error ? 'van-field--error' : '' }}"
|
placeholder-class="{{ error ? 'van-field__input--error' : '' }}"
|
||||||
confirm-type="{{ confirmType }}"
|
confirm-type="{{ confirmType }}"
|
||||||
confirm-hold="{{ confirmHold }}"
|
confirm-hold="{{ confirmHold }}"
|
||||||
cursor-spacing="{{ cursorSpacing }}"
|
cursor-spacing="{{ cursorSpacing }}"
|
||||||
|
@ -9,14 +9,5 @@ VantComponent({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true
|
value: true
|
||||||
}
|
}
|
||||||
},
|
|
||||||
|
|
||||||
computed: {
|
|
||||||
rootClass() {
|
|
||||||
const { safeAreaInsetBottom, isIPhoneX } = this.data;
|
|
||||||
return this.classNames('van-goods-action', 'custom-class', {
|
|
||||||
[`van-goods-action--safe`]: isIPhoneX && safeAreaInsetBottom
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
<view class="{{ rootClass }}">
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
|
||||||
|
<view class="custom-class {{ utils.bem('goods-action', { safe: isIPhoneX && safeAreaInsetBottom }) }}">
|
||||||
<slot />
|
<slot />
|
||||||
</view>
|
</view>
|
||||||
|
@ -1,9 +1,5 @@
|
|||||||
import { classNames } from '../common/class-names';
|
|
||||||
|
|
||||||
export const basic = Behavior({
|
export const basic = Behavior({
|
||||||
methods: {
|
methods: {
|
||||||
classNames,
|
|
||||||
|
|
||||||
$emit() {
|
$emit() {
|
||||||
this.triggerEvent.apply(this, arguments);
|
this.triggerEvent.apply(this, arguments);
|
||||||
},
|
},
|
||||||
|
@ -31,16 +31,6 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
|
||||||
popupClass() {
|
|
||||||
const { position, safeAreaInsetBottom, isIPhoneX } = this.data;
|
|
||||||
return this.classNames('custom-class', 'van-popup', {
|
|
||||||
[`van-popup--${position}`]: position,
|
|
||||||
[`van-popup--safe`]: isIPhoneX && safeAreaInsetBottom && position === 'bottom'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onClickOverlay() {
|
onClickOverlay() {
|
||||||
this.$emit('click-overlay');
|
this.$emit('click-overlay');
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
|
||||||
<van-overlay
|
<van-overlay
|
||||||
wx:if="{{ inited && overlay }}"
|
wx:if="{{ inited && overlay }}"
|
||||||
mask
|
mask
|
||||||
@ -8,7 +10,7 @@
|
|||||||
/>
|
/>
|
||||||
<view
|
<view
|
||||||
wx:if="{{ inited }}"
|
wx:if="{{ inited }}"
|
||||||
class="{{ popupClass }}"
|
class="custom-class {{ utils.bem('popup', [position, { safe: isIPhoneX && safeAreaInsetBottom && position === 'bottom' }]) }}"
|
||||||
style="z-index: {{ zIndex }}; -webkit-animation: van-{{ transition || position }}-{{ type }} {{ duration }}ms both; animation: van-{{ transition || position }}-{{ type }} {{ duration }}ms both; {{ display ? '' : 'display: none;' }}{{ customStyle }}"
|
style="z-index: {{ zIndex }}; -webkit-animation: van-{{ transition || position }}-{{ type }} {{ duration }}ms both; animation: van-{{ transition || position }}-{{ type }} {{ duration }}ms both; {{ display ? '' : 'display: none;' }}{{ customStyle }}"
|
||||||
bind:animationend="onAnimationEnd"
|
bind:animationend="onAnimationEnd"
|
||||||
>
|
>
|
||||||
|
@ -19,17 +19,6 @@ VantComponent({
|
|||||||
checkedColor: String
|
checkedColor: String
|
||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
|
||||||
iconClass(): string {
|
|
||||||
const { disabled, name, value } = this.data;
|
|
||||||
return this.classNames('van-radio__icon', {
|
|
||||||
'van-radio__icon--disabled': disabled,
|
|
||||||
'van-radio__icon--checked': !disabled && name === value,
|
|
||||||
'van-radio__icon--check': !disabled && name !== value
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
emitChange(value) {
|
emitChange(value) {
|
||||||
const instance = this.getRelationNodes('../radio-group/index')[0] || this;
|
const instance = this.getRelationNodes('../radio-group/index')[0] || this;
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
|
||||||
<view class="van-radio custom-class">
|
<view class="van-radio custom-class">
|
||||||
<view class="van-radio__input">
|
<view class="van-radio__input">
|
||||||
<radio-group bindchange="onChange">
|
<radio-group bindchange="onChange">
|
||||||
@ -9,7 +11,7 @@
|
|||||||
/>
|
/>
|
||||||
</radio-group>
|
</radio-group>
|
||||||
<van-icon
|
<van-icon
|
||||||
class="{{ iconClass }}"
|
class="{{ utils.bem('radio__icon', { disabled, checked: !disabled && name === value, check: !disabled && name !== value }) }}"
|
||||||
custom-class="icon-class"
|
custom-class="icon-class"
|
||||||
color="{{ value === name ? checkedColor : '' }}"
|
color="{{ value === name ? checkedColor : '' }}"
|
||||||
name="{{ value === name ? 'checked' : 'check' }}"
|
name="{{ value === name ? 'checked' : 'check' }}"
|
||||||
|
@ -44,13 +44,6 @@ VantComponent({
|
|||||||
tipStr() {
|
tipStr() {
|
||||||
const { tip } = this.data;
|
const { tip } = this.data;
|
||||||
return typeof tip === 'string' ? tip : '';
|
return typeof tip === 'string' ? tip : '';
|
||||||
},
|
|
||||||
|
|
||||||
barClass() {
|
|
||||||
const { isIPhoneX, safeAreaInsetBottom } = this.data;
|
|
||||||
return this.classNames('van-submit-bar__bar', 'bar-class', {
|
|
||||||
'van-submit-bar__bar--safe': safeAreaInsetBottom && isIPhoneX
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
|
||||||
<view class="van-submit-bar custom-class">
|
<view class="van-submit-bar custom-class">
|
||||||
<slot name="top" />
|
<slot name="top" />
|
||||||
|
|
||||||
@ -5,7 +7,7 @@
|
|||||||
{{ tipStr }}<slot name="tip" />
|
{{ tipStr }}<slot name="tip" />
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="{{ barClass }}">
|
<view class="bar-class {{ utils.bem('submit-bar__bar', { safe: safeAreaInsetBottom && isIPhoneX }) }}">
|
||||||
<slot />
|
<slot />
|
||||||
<view class="van-submit-bar__text">
|
<view class="van-submit-bar__text">
|
||||||
<block wx:if="{{ hasPrice }}">
|
<block wx:if="{{ hasPrice }}">
|
||||||
|
@ -24,13 +24,6 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
computed: {
|
||||||
classes(): string {
|
|
||||||
return this.classNames('van-switch', {
|
|
||||||
'van-switch--on': this.data.checked,
|
|
||||||
'van-switch--disabled': this.data.disabled
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
style() {
|
style() {
|
||||||
const backgroundColor = this.data.checked ? this.data.activeColor : this.data.inactiveColor;
|
const backgroundColor = this.data.checked ? this.data.activeColor : this.data.inactiveColor;
|
||||||
return `font-size: ${this.data.size}; ${ backgroundColor ? `background-color: ${backgroundColor}` : '' }`
|
return `font-size: ${this.data.size}; ${ backgroundColor ? `background-color: ${backgroundColor}` : '' }`
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
|
||||||
<view
|
<view
|
||||||
style="{{ style }}"
|
style="{{ style }}"
|
||||||
class="custom-class {{ classes }}"
|
class="custom-class {{ utils.bem('switch', { on: checked, disabled }) }}"
|
||||||
bind:tap="onClick"
|
bind:tap="onClick"
|
||||||
>
|
>
|
||||||
<view class="van-switch__node node-class">
|
<view class="van-switch__node node-class">
|
||||||
|
@ -42,16 +42,6 @@ VantComponent({
|
|||||||
currentActive: -1
|
currentActive: -1
|
||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
|
||||||
tabbarClass() {
|
|
||||||
const { fixed, isIPhoneX, safeAreaInsetBottom } = this.data;
|
|
||||||
return this.classNames('custom-class', 'van-tabbar', 'van-hairline--top-bottom', {
|
|
||||||
'van-tabbar--fixed': fixed,
|
|
||||||
'van-tabbar--safe': isIPhoneX && safeAreaInsetBottom
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
active(active) {
|
active(active) {
|
||||||
this.set({ currentActive: active });
|
this.set({ currentActive: active });
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
|
||||||
<view
|
<view
|
||||||
class="{{ tabbarClass }}"
|
class="custom-class van-hairline--top-bottom {{ utils.bem('tabbar', { fixed, safe: isIPhoneX && safeAreaInsetBottom }) }}"
|
||||||
style="{{ zIndex ? 'z-index: ' + zIndex : '' }}"
|
style="{{ zIndex ? 'z-index: ' + zIndex : '' }}"
|
||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
|
@ -19,17 +19,6 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
computed: {
|
||||||
classes() {
|
|
||||||
const { data } = this;
|
|
||||||
return this.classNames('van-tag', {
|
|
||||||
'van-tag--mark': data.mark,
|
|
||||||
'van-tag--plain': data.plain,
|
|
||||||
'van-tag--round': data.round,
|
|
||||||
[`van-tag--${data.size}`]: data.size,
|
|
||||||
'van-hairline--surround': data.plain
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
style() {
|
style() {
|
||||||
const color = this.data.color || COLOR_MAP[this.data.type] || DEFAULT_COLOR;
|
const color = this.data.color || COLOR_MAP[this.data.type] || DEFAULT_COLOR;
|
||||||
const key = this.data.plain ? 'color' : 'background-color';
|
const key = this.data.plain ? 'color' : 'background-color';
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
|
||||||
<view
|
<view
|
||||||
class="custom-class {{ classes }}"
|
class="custom-class {{ utils.bem('tag', [size, { mark, plain, round }]) }} {{ plain ? 'van-hairline--surround' : '' }}"
|
||||||
style="{{ style }}"
|
style="{{ style }}"
|
||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
|
@ -16,7 +16,7 @@ function traversing(mods, conf) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typeof conf === 'string') {
|
if (typeof conf === 'string' || typeof conf === 'number') {
|
||||||
mods.push(conf);
|
mods.push(conf);
|
||||||
} else if (array.isArray(conf)) {
|
} else if (array.isArray(conf)) {
|
||||||
conf.forEach(function(item) {
|
conf.forEach(function(item) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user