mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
20 lines
307 B
Markdown
20 lines
307 B
Markdown
# Basic
|
|
Basic usage of input.
|
|
```html
|
|
<n-input v-model="value" type="input" placeholder="Basic Input"/>
|
|
<n-input v-model="value" type="textarea" placeholder="Basic Textarea"/>
|
|
```
|
|
```js
|
|
export default {
|
|
data() {
|
|
return {
|
|
value: null
|
|
}
|
|
}
|
|
}
|
|
```
|
|
```css
|
|
.n-input {
|
|
margin-bottom: 8px;
|
|
}
|
|
``` |