mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 20:27:44 +08:00
61 lines
1.5 KiB
Vue
61 lines
1.5 KiB
Vue
<template>
|
|
<el-autocomplete
|
|
v-model="state"
|
|
:fetch-suggestions="querySearchAsync"
|
|
placeholder="Please input"
|
|
@select="handleSelect"
|
|
/>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted, ref } from 'vue'
|
|
|
|
const state = ref('')
|
|
|
|
interface LinkItem {
|
|
value: string
|
|
link: string
|
|
}
|
|
|
|
const links = ref<LinkItem[]>([])
|
|
|
|
const loadAll = () => {
|
|
return [
|
|
{ value: 'vue', link: 'https://github.com/vuejs/vue' },
|
|
{ value: 'element', link: 'https://github.com/ElemeFE/element' },
|
|
{ value: 'cooking', link: 'https://github.com/ElemeFE/cooking' },
|
|
{ value: 'mint-ui', link: 'https://github.com/ElemeFE/mint-ui' },
|
|
{ value: 'vuex', link: 'https://github.com/vuejs/vuex' },
|
|
{ value: 'vue-router', link: 'https://github.com/vuejs/vue-router' },
|
|
{ value: 'babel', link: 'https://github.com/babel/babel' },
|
|
]
|
|
}
|
|
|
|
let timeout: ReturnType<typeof setTimeout>
|
|
const querySearchAsync = (queryString: string, cb: (arg: any) => void) => {
|
|
const results = queryString
|
|
? links.value.filter(createFilter(queryString))
|
|
: links.value
|
|
|
|
clearTimeout(timeout)
|
|
timeout = setTimeout(() => {
|
|
cb(results)
|
|
}, 3000 * Math.random())
|
|
}
|
|
const createFilter = (queryString: string) => {
|
|
return (restaurant: LinkItem) => {
|
|
return (
|
|
restaurant.value.toLowerCase().indexOf(queryString.toLowerCase()) === 0
|
|
)
|
|
}
|
|
}
|
|
|
|
const handleSelect = (item: Record<string, any>) => {
|
|
console.log(item)
|
|
}
|
|
|
|
onMounted(() => {
|
|
links.value = loadAll()
|
|
})
|
|
</script>
|