mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* perf: change to import-x * feat: add rules * chore: fix rule * chore: fix * chore: fix * chore: fix * style: `pnpm lint:fix` * Revert "style: `pnpm lint:fix`" This reverts commitdb0116a288. * Revert "chore: fix" This reverts commit69c82a90c0. * chore: fix * style: `pnpm lint:fix` * fix: lint * chore: `pnpm format`
90 lines
1.7 KiB
Vue
90 lines
1.7 KiB
Vue
<template>
|
|
<el-select v-model="value" placeholder="Select" style="width: 240px">
|
|
<el-option
|
|
v-for="item in cities"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"
|
|
/>
|
|
<template #footer>
|
|
<el-button v-if="!isAdding" text bg size="small" @click="onAddOption">
|
|
Add an option
|
|
</el-button>
|
|
<template v-else>
|
|
<el-input
|
|
v-model="optionName"
|
|
class="option-input"
|
|
placeholder="input option name"
|
|
size="small"
|
|
/>
|
|
<el-button type="primary" size="small" @click="onConfirm">
|
|
confirm
|
|
</el-button>
|
|
<el-button size="small" @click="clear">cancel</el-button>
|
|
</template>
|
|
</template>
|
|
</el-select>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
import type { CheckboxValueType } from 'element-plus'
|
|
|
|
const isAdding = ref(false)
|
|
const value = ref<CheckboxValueType[]>([])
|
|
const optionName = ref('')
|
|
const cities = ref([
|
|
{
|
|
value: 'Beijing',
|
|
label: 'Beijing',
|
|
},
|
|
{
|
|
value: 'Shanghai',
|
|
label: 'Shanghai',
|
|
},
|
|
{
|
|
value: 'Nanjing',
|
|
label: 'Nanjing',
|
|
},
|
|
{
|
|
value: 'Chengdu',
|
|
label: 'Chengdu',
|
|
},
|
|
{
|
|
value: 'Shenzhen',
|
|
label: 'Shenzhen',
|
|
},
|
|
{
|
|
value: 'Guangzhou',
|
|
label: 'Guangzhou',
|
|
},
|
|
])
|
|
|
|
const onAddOption = () => {
|
|
isAdding.value = true
|
|
}
|
|
|
|
const onConfirm = () => {
|
|
if (optionName.value) {
|
|
cities.value.push({
|
|
label: optionName.value,
|
|
value: optionName.value,
|
|
})
|
|
clear()
|
|
}
|
|
}
|
|
|
|
const clear = () => {
|
|
optionName.value = ''
|
|
isAdding.value = false
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.option-input {
|
|
width: 100%;
|
|
margin-bottom: 8px;
|
|
}
|
|
</style>
|