forked from opentiny/tiny-vue
33 lines
704 B
Vue
33 lines
704 B
Vue
<template>
|
|
<div>
|
|
<tiny-company
|
|
v-model="value"
|
|
placeholder="请选择"
|
|
@change="change"
|
|
@clear="clear"
|
|
@visible-change="visibleChange"
|
|
is-drop-inherit-width
|
|
></tiny-company>
|
|
<p>当前选中值:{{ value }}</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="jsx">
|
|
import { ref } from 'vue'
|
|
import { Company as TinyCompany, Modal } from '@opentiny/vue'
|
|
|
|
const value = ref('')
|
|
|
|
function visibleChange(val) {
|
|
Modal.message({ message: `visible:${val}`, status: 'info' })
|
|
}
|
|
|
|
function clear() {
|
|
Modal.message({ message: 'clear:触发了', status: 'info' })
|
|
}
|
|
|
|
function change(value) {
|
|
Modal.message({ message: `change:${value}`, status: 'info' })
|
|
}
|
|
</script>
|