12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <div class="center">
- <div class="typeBox">
- 类型:
- <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>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: '',
- data() {
- return {
- value: '',
- options: []
- };
- }
- };
- </script>
- <style lang='scss' scoped>
- .center {
- width: 100%;
- height: 100%;
- }
- </style>
|