Input 输入框
当前输入:(空)
<script setup lang="ts"> import { ref } from "vue"; const value = ref(""); </script> <template> <Input v-model="value" placeholder="请输入内容" /> <Input placeholder="禁用状态" disabled /> </template>
import { Input } from "@reglow/reui";
modelValue
string
placeholder
disabled
boolean
false
type
"text"
其余属性透传至原生 <input>。
<input>
内容锚点