tiny-vue/examples/sites/demos/pc/app/base-select/slot-footer.vue

46 lines
1.0 KiB
Vue

<template>
<tiny-base-select v-model="value">
<tiny-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"> </tiny-option>
<template #footer>
<div class="select-footer">
<tiny-button type="success" round> 底部插槽 </tiny-button>
</div>
</template>
</tiny-base-select>
</template>
<script>
import { BaseSelect, Option, Button } from '@opentiny/vue'
export default {
components: {
TinyButton: Button,
TinyBaseSelect: BaseSelect,
TinyOption: Option
},
data() {
return {
options: [
{ value: '选项1', label: '北京' },
{ value: '选项2', label: '上海' },
{ value: '选项3', label: '天津' },
{ value: '选项4', label: '重庆' },
{ value: '选项5', label: '深圳' }
],
value: ''
}
}
}
</script>
<style lang="less" scoped>
.tiny-base-select {
width: 280px;
}
.select-footer {
text-align: center;
background-color: #cff3e8;
padding: 8px;
}
</style>