mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
496 B
496 B
layout |
---|
templateLayout |
<template>
<Wb-input v-model="text1" placeholder="type默认为text"></Wb-input>
<Wb-input v-model="text2" :maxlength="10" placeholder="通过maxlength设置最大输入长度"></Wb-input>
<Wb-input v-model="text3" placeholder="通过width设置宽度" width="200px"></Wb-input>
</template>
<script>
export default {
data(){
return {
text1: '',
text2: '',
text3: '',
}
}
}
</script>