admin-vue3/src/views/im/manager/group/index.vue

22 lines
436 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<ContentWrap>
<!-- TODO @芋艿这个只是临时的 -->
<div class="im-manager-placeholder">我是群管理测试界面</div>
</ContentWrap>
</template>
<script lang="ts" setup>
defineOptions({ name: 'ImManagerGroup' })
</script>
<style scoped>
.im-manager-placeholder {
display: flex;
align-items: center;
justify-content: center;
min-height: 200px;
font-size: 18px;
color: #606266;
}
</style>