Files
YGChatCS/src/pages/index/components/chat/ChatCardOther/index.vue
2025-10-14 20:09:18 +08:00

21 lines
310 B
Vue

<template>
<view class="chat-other pl-20">
<text>{{ text }}</text>
<slot></slot>
</view>
</template>
<script setup>
import { defineProps } from "vue";
defineProps({
text: {
type: String,
default: "",
},
});
</script>
<style lang="scss" scoped>
@import "./styles/index.scss";
</style>