mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-13 12:02:51 +00:00
23 lines
527 B
Vue
23 lines
527 B
Vue
<template>
|
|
<div class="content-text no-dark-content">
|
|
<DialogMarkdown v-if="msg.type === 'md'" @click="viewText" :text="msg.text"/>
|
|
<pre v-else @click="viewText" v-html="$A.formatTextMsg(msg.text, userId)"></pre>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import DialogMarkdown from "../DialogMarkdown.vue";
|
|
|
|
export default {
|
|
components: {DialogMarkdown},
|
|
props: {
|
|
msg: Object,
|
|
},
|
|
methods: {
|
|
viewText(e) {
|
|
this.$emit('viewText', e);
|
|
},
|
|
},
|
|
}
|
|
</script>
|