Files
YGChatCS/pages/index/components/chat/ChatCardOther/index.vue
2025-09-21 14:26:04 +08:00

21 lines
304 B
Vue

<template>
<view class="chat-other">
<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>