2021-03-29 22:48:13 +08:00
|
|
|
<template>
|
|
|
|
|
<PageWrapper title="图片裁剪示例" contentBackground>
|
2021-03-31 23:52:11 +08:00
|
|
|
<CropperImage src="https://fengyuanchen.github.io/cropperjs/images/picture.jpg" />
|
2021-03-29 22:48:13 +08:00
|
|
|
</PageWrapper>
|
|
|
|
|
</template>
|
|
|
|
|
<script lang="ts">
|
|
|
|
|
import { defineComponent } from 'vue';
|
|
|
|
|
import { PageWrapper } from '/@/components/Page';
|
|
|
|
|
|
|
|
|
|
import { CropperImage } from '/@/components/Cropper';
|
|
|
|
|
|
|
|
|
|
import img from '/@/assets/images/header.jpg';
|
|
|
|
|
export default defineComponent({
|
|
|
|
|
components: {
|
|
|
|
|
PageWrapper,
|
|
|
|
|
CropperImage,
|
|
|
|
|
},
|
|
|
|
|
setup() {
|
|
|
|
|
return { img };
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
</script>
|