mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
487001d697
.demo.md for component demo .demo-entry.md for demo entry .md for common docs
46 lines
793 B
Markdown
46 lines
793 B
Markdown
# Actions After Select
|
|
Blur after selection or clear after selection.
|
|
```html
|
|
<n-auto-complete
|
|
:options="options"
|
|
v-model="value"
|
|
clear-after-select
|
|
placeholder="Clear After Select"
|
|
/>
|
|
<n-auto-complete
|
|
:options="options"
|
|
v-model="value"
|
|
blur-after-select
|
|
placeholder="Blur After Select"
|
|
/>
|
|
```
|
|
```js
|
|
export default {
|
|
computed: {
|
|
options () {
|
|
return [
|
|
'@gmail.com',
|
|
'@163.com',
|
|
'@qq.com'
|
|
].map(suffix => {
|
|
const value = this.value === null ? '' : this.value
|
|
const prefix = value.split('@')[0]
|
|
return {
|
|
label: prefix + suffix,
|
|
value: prefix + suffix,
|
|
}
|
|
})
|
|
}
|
|
},
|
|
data () {
|
|
return {
|
|
value: null
|
|
}
|
|
}
|
|
}
|
|
```
|
|
```css
|
|
.n-auto-complete {
|
|
margin: 0 0 12px 0;
|
|
}
|
|
``` |