mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
331 B
331 B
基础用法
文本输入的基础用法。
<n-input v-model="value" type="input" placeholder="基本的 Input"/>
<n-input v-model="value" type="textarea" placeholder="基本的 Textarea"/>
export default {
data() {
return {
value: null
}
}
}
.n-input {
margin-bottom: 8px;
}