mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-02 03:08:21 +08:00
5844947198
* refactor(components): [select&select-v2] refactor components * refactor(components): [select-v2] * refactor(components): update * refactor(components): update * refactor(components): [select-v2] update * refactor(components): update * refactor(components): update * refactor(components): update type * refactor(components): update * refactor(components): update * refactor(components): update style * refactor(components): update docs * refactor(components): update * refactor(components): fix #15323 * refactor(theme-chalk): update * refactor(components): update * refactor(components): update * refactor(components): update * refactor(components): fix bugs * fix(components): fix issue * fix(components): update * fix(components): fix some bug * feat(components): update * feat(components): add tag slot * feat(components): update * fix(components): update * style(theme-chalk): update style * fix(theme-chalk): update * feat(theme-chalk): update * fix(components): update * feat: update * feat: update * feat: update * feat(components): update
39 lines
831 B
Vue
39 lines
831 B
Vue
<template>
|
|
<div class="m-4">
|
|
<el-select
|
|
v-model="value"
|
|
value-key="id"
|
|
placeholder="Select"
|
|
style="width: 240px"
|
|
>
|
|
<el-option
|
|
v-for="item in options"
|
|
:key="item.id"
|
|
:label="item.label"
|
|
:value="item"
|
|
/>
|
|
</el-select>
|
|
<p>
|
|
selected option's description:
|
|
{{ value ? value.desc : 'no select' }}
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
|
|
type Option = {
|
|
id: number
|
|
label: string
|
|
desc: string
|
|
}
|
|
const value = ref<Option>()
|
|
const options = ref([
|
|
{ id: 1, label: 'Option A', desc: 'Option A - 230506' },
|
|
{ id: 2, label: 'Option B', desc: 'Option B - 230506' },
|
|
{ id: 3, label: 'Option C', desc: 'Option C - 230506' },
|
|
{ id: 4, label: 'Option A', desc: 'Option A - 230507' },
|
|
])
|
|
</script>
|