mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
40 lines
664 B
Vue
40 lines
664 B
Vue
<template>
|
|
<demo-block v-if="!isWeapp" :title="$t('formatValue')">
|
|
<van-cell-group>
|
|
<van-field
|
|
v-model="formatValue"
|
|
:label="$t('text')"
|
|
:formatter="formatter"
|
|
:placeholder="$t('formatValue')"
|
|
/>
|
|
</van-cell-group>
|
|
</demo-block>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
i18n: {
|
|
'zh-CN': {
|
|
text: '文本',
|
|
formatValue: '格式化输入内容',
|
|
},
|
|
'en-US': {
|
|
text: 'Text',
|
|
formatValue: 'Format Value',
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
formatValue: '',
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
formatter(value) {
|
|
return value.replace(/\d/g, '');
|
|
},
|
|
},
|
|
};
|
|
</script>
|