keanu-weblite/src/components/messages/RoomTopicChanged.vue
N-Pex b1d47748c8 Use SASS module system
Get rid of all the SASS warnings/errors when building.
2025-05-19 10:25:46 +02:00

18 lines
No EOL
385 B
Vue

<template>
<!-- ROOM TOPIC CHANGED -->
<div class="statusEvent">
{{ $t('message.user_changed_room_topic', {user: eventSenderDisplayName(event), topic: event.getContent().topic}) }}
</div>
</template>
<script>
import messageMixin from "./messageMixin";
export default {
mixins: [messageMixin],
};
</script>
<style lang="scss">
@use "@/assets/css/chat.scss" as *;
</style>