24 lines
810 B
Vue
24 lines
810 B
Vue
<template>
|
|
<div>
|
|
<tiny-button @click="getCropBoxData" 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 getCropBoxData() {
|
|
Modal.message({
|
|
message: `裁剪框数据:${JSON.stringify(cropRef.value.getCropBoxData())}`,
|
|
status: 'info'
|
|
})
|
|
}
|
|
</script>
|