mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
4560adfdf8
* refactor(style): adjust component size to large/default/small * refactor(components): avatar size & use flex instead of block * refactor(components): adjust check button size * refactor(components): adjust tag size * refactor(components): adjust size doc * fix(components): datetime-picker demo style width * refactor(components): color-picker size & block to flex * refactor(components): adjust slider input size * refactor(components): adjust radio input size for demo * refactor(components): adjust select size & docs * refactor(components): adjust form radio size & docs * refactor(components): add windicss for docs * refactor(components): adjust skeleton avatar size to css var * refactor(components): simplify typography size demo * refactor(components): adjust dropdown size & demo * refactor(components): adjust descriptions size * fix(components): datetime-picker showcase class pollute global button * chore(ci): upgrade docs dependencies to fix ci * fix(ci): add highlight because vitepress not export it * fix(ci): disable line for no-console * fix(ci): remove mini to fix test * fix(style): code font size * fix(style): button span flex style * fix(style): button padding horizontal default 15px * refactor(components): adjust tag padding size & demo * refactor(components): adjust form line-height for input * refactor(components): adjust dropdown menu size & button padding * fix(style): picker separator block to flex center * fix: dropdown button span items-center * style: adjust input-with-icon & size demo & fix input vitepress load * chore: upgrade dependencies * chore: upgrade dependencies * ci: fix website build * ci: regenerate pnpm-lock.yaml * ci: use dev pnpm-lock * ci: update pnpm-lock.yaml
104 lines
1.9 KiB
Vue
104 lines
1.9 KiB
Vue
<template>
|
|
<el-select-v2
|
|
v-model="value"
|
|
style="width: 240px"
|
|
multiple
|
|
filterable
|
|
remote
|
|
:remote-method="remoteMethod"
|
|
clearable
|
|
:options="options"
|
|
:loading="loading"
|
|
placeholder="Please enter a keyword"
|
|
/>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { ref, defineComponent } from 'vue'
|
|
|
|
export default defineComponent({
|
|
setup() {
|
|
const states = [
|
|
'Alabama',
|
|
'Alaska',
|
|
'Arizona',
|
|
'Arkansas',
|
|
'California',
|
|
'Colorado',
|
|
'Connecticut',
|
|
'Delaware',
|
|
'Florida',
|
|
'Georgia',
|
|
'Hawaii',
|
|
'Idaho',
|
|
'Illinois',
|
|
'Indiana',
|
|
'Iowa',
|
|
'Kansas',
|
|
'Kentucky',
|
|
'Louisiana',
|
|
'Maine',
|
|
'Maryland',
|
|
'Massachusetts',
|
|
'Michigan',
|
|
'Minnesota',
|
|
'Mississippi',
|
|
'Missouri',
|
|
'Montana',
|
|
'Nebraska',
|
|
'Nevada',
|
|
'New Hampshire',
|
|
'New Jersey',
|
|
'New Mexico',
|
|
'New York',
|
|
'North Carolina',
|
|
'North Dakota',
|
|
'Ohio',
|
|
'Oklahoma',
|
|
'Oregon',
|
|
'Pennsylvania',
|
|
'Rhode Island',
|
|
'South Carolina',
|
|
'South Dakota',
|
|
'Tennessee',
|
|
'Texas',
|
|
'Utah',
|
|
'Vermont',
|
|
'Virginia',
|
|
'Washington',
|
|
'West Virginia',
|
|
'Wisconsin',
|
|
'Wyoming',
|
|
]
|
|
const list = states.map((item) => {
|
|
return { value: `value:${item}`, label: `label:${item}` }
|
|
})
|
|
|
|
const options = ref([])
|
|
const value = ref([])
|
|
const loading = ref(false)
|
|
|
|
const remoteMethod = (query) => {
|
|
if (query !== '') {
|
|
loading.value = true
|
|
setTimeout(() => {
|
|
loading.value = false
|
|
options.value = list.filter((item) => {
|
|
return item.label.toLowerCase().indexOf(query.toLowerCase()) > -1
|
|
})
|
|
}, 200)
|
|
} else {
|
|
options.value = []
|
|
}
|
|
}
|
|
|
|
return {
|
|
loading,
|
|
options,
|
|
value,
|
|
remoteMethod,
|
|
}
|
|
},
|
|
})
|
|
</script>
|