vant/src/field/demo/ShowWordLimit.vue
2020-03-21 14:46:02 +08:00

38 lines
658 B
Vue

<template>
<demo-block v-if="!isWeapp" :title="t('showWordLimit')">
<van-field
v-model="value"
autosize
show-word-limit
rows="2"
type="textarea"
maxlength="50"
:label="t('message')"
:placeholder="t('placeholder')"
/>
</demo-block>
</template>
<script>
export default {
i18n: {
'zh-CN': {
message: '留言',
placeholder: '请输入留言',
showWordLimit: '显示字数统计',
},
'en-US': {
message: 'Message',
placeholder: 'Message',
showWordLimit: 'Show Word Limit',
},
},
data() {
return {
value: '',
};
},
};
</script>