You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
379 B
23 lines
379 B
![]()
4 months ago
|
<template>
|
||
|
<el-select v-model="value" placeholder="请选择">
|
||
|
<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: 'GuipTextarea',
|
||
|
props:['options'],
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
value: ''
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|