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>