mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 12:33:07 +00:00
21 lines
363 B
Vue
21 lines
363 B
Vue
<template>
|
|
<div>
|
|
<ParsedMessage :text="text" :message="message" :network="network" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ParsedMessage from "../../../client/components/ParsedMessage.vue";
|
|
|
|
export default {
|
|
name: "ParsedMessageTestWrapper",
|
|
components: {
|
|
ParsedMessage,
|
|
},
|
|
props: {
|
|
text: String,
|
|
message: Object,
|
|
network: Object,
|
|
},
|
|
};
|
|
</script>
|