chat-pc/src/views/message/inner/IndexAmicable.vue

26 lines
465 B
Vue
Raw Normal View History

2024-12-24 08:14:21 +00:00
<template>
<div class="amicable flex-center">
<div class="content">
<img src="@/assets/image/welcome.svg" alt="" />
<p>IM 欢迎您 (*^__^*)</p>
2024-12-24 08:14:21 +00:00
</div>
</div>
</template>
<style lang="less" scoped>
.amicable {
height: 100%;
width: 100%;
-webkit-app-region: drag;
.content {
width: 400px;
height: 300px;
text-align: center;
color: #ccc;
margin-top: -10%;
font-size: 18px;
font-weight: 300;
}
}
</style>