wip: 图片裁剪

This commit is contained in:
kailong321200875
2023-11-14 17:59:44 +08:00
parent efc1c25db8
commit 19ccf8b518
7 changed files with 114 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
import { ContentWrap } from '@/components/ContentWrap'
import { ImageCropping } from '@/components/ImageCropping'
</script>
<template>
<ContentWrap title="图片裁剪">
<ImageCropping
:box-width="350"
:box-height="380"
image-url="https://images6.alphacoders.com/657/thumbbig-657194.webp"
/>
</ContentWrap>
</template>