parent
8488465d24
commit
1b0e4bf719
4 changed files with 54 additions and 1 deletions
@ -0,0 +1,47 @@ |
||||
<template> |
||||
<el-select v-model="value" placeholder="请选择" size="large"> |
||||
<el-option |
||||
v-for="item in options" |
||||
:key="item.value" |
||||
:label="item.label" |
||||
:value="item.value"> |
||||
</el-option> |
||||
</el-select> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: "From_Demo5", |
||||
data() { |
||||
return { |
||||
value: '', |
||||
options: [ |
||||
{ |
||||
value: 'Option1', |
||||
label: '选项1', |
||||
}, |
||||
{ |
||||
value: 'Option2', |
||||
label: '选项2', |
||||
}, |
||||
{ |
||||
value: 'Option3', |
||||
label: '选项3', |
||||
}, |
||||
{ |
||||
value: 'Option4', |
||||
label: '选项4', |
||||
}, |
||||
{ |
||||
value: 'Option5', |
||||
label: '选项5', |
||||
} |
||||
] |
||||
} |
||||
}, |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
Loading…
Reference in new issue