mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
33 lines
503 B
Vue
33 lines
503 B
Vue
<template>
|
|
<demo-block :title="t('basicUsage')">
|
|
<van-cell-group>
|
|
<van-field
|
|
v-model="value"
|
|
:label="t('label')"
|
|
:placeholder="t('placeholder')"
|
|
/>
|
|
</van-cell-group>
|
|
</demo-block>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
i18n: {
|
|
'zh-CN': {
|
|
label: '文本',
|
|
placeholder: '请输入文本',
|
|
},
|
|
'en-US': {
|
|
label: 'Label',
|
|
placeholder: 'Text',
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
value: '',
|
|
};
|
|
},
|
|
};
|
|
</script>
|