forked from opentiny/tiny-vue
61 lines
1.3 KiB
Vue
61 lines
1.3 KiB
Vue
<template>
|
|
<div>
|
|
<tiny-button @click="click1" style="max-width: unset; margin-bottom: 15px">
|
|
单击按钮 Select 将获取焦点
|
|
</tiny-button>
|
|
<tiny-button @click="click2" style="max-width: unset; margin-bottom: 15px">
|
|
单击按钮 Select 将失去焦点
|
|
</tiny-button>
|
|
<tiny-select v-model="value" ref="drop" placeholder="请选择" multiple title="标题">
|
|
<tiny-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"> </tiny-option>
|
|
</tiny-select>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Select, Option, Button } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinySelect: Select,
|
|
TinyOption: Option,
|
|
TinyButton: Button
|
|
},
|
|
data() {
|
|
return {
|
|
options: [
|
|
{
|
|
value: '选项1',
|
|
label: '黄金糕'
|
|
},
|
|
{
|
|
value: '选项2',
|
|
label: '双皮奶'
|
|
},
|
|
{
|
|
value: '选项3',
|
|
label: '蚵仔煎'
|
|
},
|
|
{
|
|
value: '选项4',
|
|
label: '龙须面'
|
|
},
|
|
{
|
|
value: '选项5',
|
|
label: '北京烤鸭'
|
|
}
|
|
],
|
|
value: ''
|
|
}
|
|
},
|
|
methods: {
|
|
click1() {
|
|
this.$refs.drop.focus()
|
|
},
|
|
click2() {
|
|
this.$refs.drop.blur()
|
|
}
|
|
}
|
|
}
|
|
</script>
|