input、button

<template>
    <button size="default" type="primary" plain>默认按钮大小,按钮镂空</button>
    <button size="mini" disabled loading>迷你按钮大小</button>
    
    <input type="text" :value="value" placeholder="默认值" placeholder-style="color:red" placeholder-class=""/>
    <input type="number" password disabled/>
    <input type="idcard" placeholder="身份证,小程序独有" maxlength="123"/>
</template>

<script setup>
    import { ref } from 'vue'
    const value = ref('')
</script>

 

posted on 2025-02-27 21:42  ChoZ  阅读(5)  评论(0)    收藏  举报

导航