22 lines
367 B
Vue
22 lines
367 B
Vue
<template>
|
|
<div>
|
|
<tiny-text-popup v-model="value"></tiny-text-popup>
|
|
<span style="margin-left: 14px">{{ value }}</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { TextPopup } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyTextPopup: TextPopup
|
|
},
|
|
data() {
|
|
return {
|
|
value: '我是 TextPopup 组件'
|
|
}
|
|
}
|
|
}
|
|
</script>
|