tiny-vue_version0/examples/sites/demos/pc/app/crop/get-container-data-composit...

24 lines
810 B
Vue

<template>
<div>
<tiny-button @click="getContainerData" style="margin-bottom: 20px">获取容器数据</tiny-button>
<tiny-button text="图片裁剪" @click="visible = !visible" style="margin-bottom: 20px"></tiny-button>
<tiny-crop ref="cropRef" :cropvisible="visible" @update:cropvisible="visible = $event" :src="imgUrl"></tiny-crop>
</div>
</template>
<script setup lang="jsx">
import { ref } from 'vue'
import { Crop as TinyCrop, Button as TinyButton, Modal } from '@opentiny/vue'
const visible = ref(false)
const cropRef = ref()
const imgUrl = ref(`${import.meta.env.VITE_APP_BUILD_BASE_URL}static/images/mountain.png`)
function getContainerData() {
Modal.message({
message: `容器数据:${JSON.stringify(cropRef.value.getContainerData())}`,
status: 'info'
})
}
</script>