naive-ui/demo/documentation/components/autoComplete/zhCN/size.md
2020-03-03 12:40:05 +08:00

715 B

尺寸

<n-auto-complete :options="options" v-model="value" placeholder="邮箱" size="small" />
<n-auto-complete :options="options" v-model="value" placeholder="邮箱" size="medium" />
<n-auto-complete :options="options" v-model="value" placeholder="邮箱" size="large" />
export default {
  computed: {
    options () {
      return [
        '@gmail.com',
        '@163.com',
        '@qq.com'
      ].map(suffix => {
        const prefix = this.value.split('@')[0]
        return {
          label: prefix + suffix,
          value: prefix + suffix,
        }
      })
    }
  },
  data () {
    return {
      value: ''
    }
  }
}
.n-auto-complete {
  margin-bottom: 8px;
}