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

258 B

layout
templateLayout
<template>
    <Wb-input v-model="text1" placeholder="请输入密码" type="password"></Wb-input>
</template>
<script>
export default {
    data(){
        return {
            text1: '',
        }
    }
}
</script>