21 lines
310 B
Vue
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>
|