tiny-vue/examples/sites/demos/pc/app/select/copy-multi.vue

62 lines
1.7 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>
<p>场景1多选复制单个标签</p>
<br />
<tiny-select ref="selectTagSelectable" v-model="value1" multiple tag-selectable>
<tiny-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"> </tiny-option>
</tiny-select>
<br /><br />
<p>场景2多选一键复制所有标签</p>
<br />
<tiny-select ref="selectCopyable" v-model="value2" multiple copyable>
<tiny-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"> </tiny-option>
</tiny-select>
<br /><br />
<p>场景3多选设置复制文本分隔符</p>
<br />
<tiny-select ref="selectCopyable" v-model="value2" multiple copyable text-split="/">
<tiny-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"> </tiny-option>
</tiny-select>
<br /><br />
<p>复制到此处:</p>
<br />
<tiny-input v-model="copyValue" class="copy-value" type="text"></tiny-input>
</div>
</template>
<script>
import { Select, Option, Input } from '@opentiny/vue'
export default {
components: {
TinySelect: Select,
TinyOption: Option,
TinyInput: Input
},
data() {
return {
options: [
{ value: '选项1', label: '北京' },
{ value: '选项2', label: '上海' },
{ value: '选项3', label: '天津' },
{ value: '选项4', label: '重庆' },
{ value: '选项5', label: '深圳' }
],
value1: ['选项1'],
value2: ['选项1', '选项2'],
copyValue: ''
}
}
}
</script>
<style lang="less" scoped>
.tiny-select {
width: 280px;
}
p {
font-size: 14px;
line-height: 1.5;
}
</style>