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

29 lines
510 B
Vue
Raw Normal View History

2024-12-24 08:14:21 +00:00
<script lang="ts" setup>
import { NSkeleton } from 'naive-ui'
</script>
<template>
<div class="skeleton flex-center" v-for="i in 10" :key="i">
<div class="avatar"><n-skeleton circle size="medium" /></div>
<div class="content">
<n-skeleton text :repeat="1" />
<n-skeleton text style="width: 60%" />
</div>
</div>
</template>
<style lang="less" scoped>
.skeleton {
padding: 5px 10px;
margin: 8px 0;
.avatar {
width: 50px;
}
.content {
flex: auto;
}
}
</style>