mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-08-28 08:43:02 +08:00
38 lines
658 B
Vue
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>
|