naive-ui/demo/components/selectDemo/remoteSearchSingle.demo.vue
2019-08-25 16:58:04 +08:00

107 lines
2.0 KiB
Vue

<template>
<div class="n-doc-section">
<div class="n-doc-section__header">
Remote Search(single)
</div>
<div
class="n-doc-section__view"
style="flex-wrap: nowrap;"
>
<!--EXAMPLE_START-->
<n-select
v-model="value"
filterable
placeholder="Search Songs"
:options="options"
:on-search="handleSearch"
remote
:no-data-content="noDataContent"
:loading="loading"
style="flex-grow: 1; margin-right: 12px; width: 300px;"
/>
<!--EXAMPLE_END-->
</div>
<pre class="n-doc-section__inspect">v-model(multiple): {{ JSON.stringify(value) }}</pre>
<n-doc-source-block>
<!--SOURCE-->
</n-doc-source-block>
</div>
</template>
<script>
const options = [
{
label: 'Drive My Car',
value: 'song1'
},
{
label: 'Norwegian Wood',
value: 'song2'
},
{
label: 'You Won\'t See',
value: 'song3'
},
{
label: 'Nowhere Man',
value: 'song4'
},
{
label: 'Think For Yourself',
value: 'song5'
},
{
label: 'The Word',
value: 'song6'
},
{
label: 'Michelle',
value: 'song7'
},
{
label: 'What goes on',
value: 'song8'
},
{
label: 'Girl',
value: 'song9'
},
{
label: 'I\'m looking through you',
value: 'song10'
},
{
label: 'In My Life',
value: 'song11'
},
{
label: 'Wait',
value: 'song12'
}
]
export default {
data () {
return {
value: null,
loading: false,
options: [],
noDataContent: 'please search',
handleSearch: (query) => {
if (!query.length) {
this.options = []
this.noDataContent = 'please search'
return
}
this.loading = true
window.setTimeout(() => {
this.options = options.filter(item => ~item.label.indexOf(query))
if (!this.options.length) this.noDataContent = 'no result found'
this.loading = false
}, 1000)
}
}
}
}
</script>