2020-08-27 17:18:57 +08:00

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>