admin-vben5/apps/web-antd/src/views/演示使用自行删除/wechat/index.vue

24 lines
552 B
Vue
Raw Normal View History

2024-10-07 21:04:32 +08:00
<script setup lang="ts">
import { Page } from '@vben/common-ui';
2025-03-31 12:46:14 +08:00
import { Image } from 'ant-design-vue';
2024-10-07 21:04:32 +08:00
2025-03-31 12:46:14 +08:00
import wechatGroupImg from './img-base64.txt?raw';
2024-10-07 21:04:32 +08:00
</script>
<template>
<Page>
<div class="flex w-[360px] flex-col gap-2">
2025-03-31 12:46:14 +08:00
<!-- <Alert :show-icon="true" message="人数已满,需要手动拉人" type="info" /> -->
2024-10-07 21:04:32 +08:00
<div>
2025-03-31 12:46:14 +08:00
<Image
:preview="false"
:src="wechatGroupImg"
:width="240"
class="pointer-events-none select-none"
/>
2024-10-07 21:04:32 +08:00
</div>
</div>
</Page>
</template>