thelounge/client/components/MessageTypes/topic.vue

30 lines
515 B
Vue
Raw Normal View History

2018-07-10 11:10:37 +02:00
<template>
2018-07-09 12:44:12 +02:00
<span class="content">
<template v-if="message.from && message.from.nick">
<Username :user="message.from"/>
has changed the topic to:
</template>
<template v-else>
The topic is:
</template>
<span
v-if="message.text"
class="new-topic"
v-html="$options.filters.parse(message.text)"/>
</span>
</template>
<script>
import Username from "../Username.vue";
export default {
name: "MessageTypeTopic",
components: {
Username,
},
props: {
message: Object,
},
};
</script>