naive-ui/demo/documentation/components/input/enUS/basic.demo.md
07akioni 487001d697 build: add changelog to site, refactor loader based on suffix
.demo.md for component demo
.demo-entry.md for demo entry
.md for common docs
2020-08-19 23:30:04 +08:00

307 B

Basic

Basic usage of input.

<n-input v-model="value" type="input" placeholder="Basic Input"/>
<n-input v-model="value" type="textarea"  placeholder="Basic Textarea"/>
export default {
  data() {
    return {
      value: null
    }
  }
}
.n-input {
  margin-bottom: 8px;
}