tiny-vue/examples/sites/demos/pc/app/select/basic-usage.vue

48 lines
1.1 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
<div>选中的值为 {{ value }}</div>
<br />
<div>场景1标签式</div>
<br />
<tiny-select v-model="value">
<tiny-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" :icon="item.icon">
</tiny-option>
</tiny-select>
<br />
<br />
<div>场景2配置式</div>
<br />
<tiny-select v-model="value" :options="options"> </tiny-select>
</div>
</template>
<script>
import { Select, Option } from '@opentiny/vue'
import { iconFile } from '@opentiny/vue-icon'
export default {
components: {
TinySelect: Select,
TinyOption: Option
},
data() {
return {
options: [
{ value: '选项1', label: '黄金糕', icon: iconFile() },
{ value: '选项2', label: '双皮奶', icon: iconFile() },
{ value: '选项3', label: '蚵仔煎', icon: iconFile() },
{ value: '选项4', label: '龙须面', icon: iconFile() },
{ value: '选项5', label: '北京烤鸭', icon: iconFile() }
],
value: ''
}
}
}
</script>
<style lang="less" scoped>
.tiny-select {
width: 280px;
}
</style>