可以在组件生命周期 onMounted 的时候初始化 copper,这时候只要有 dom (img) 节点就可以进行初始化,
// 这是一个 image 元素
const image = document.getElementById('processed-image')
const cropper = new Cropper(image, {
checkCrossOrigin: false,
crop (event) {
const { x, y, width, height } = event.detail
cropperData = {
x: Math.floor(x),
y: Math.floor(y),
width: Math.floor(width),
height: Math.floor(height)
}
})