1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <el-select
- v-model="value"
- multiple
- filterable
- allow-create
- default-first-option
- :reserve-keyword="false"
- placeholder="Choose tags for your article"
- >
- <el-option
- v-for="item in options"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- </template>
- <script lang="ts" setup>
- import { ref } from 'vue'
- const value = ref<string[]>([])
- const options = [
- {
- value: 'HTML',
- label: 'HTML',
- },
- {
- value: 'CSS',
- label: 'CSS',
- },
- {
- value: 'JavaScript',
- label: 'JavaScript',
- },
- ]
- </script>
|