keanu-weblite/src/components/messages/RoomDeletionNotice.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

23 lines
No EOL
391 B
Vue

<template>
<!-- ROOM WILL BE DELETED -->
<div class="notice">
👋&nbsp;
{{
$t("purge_room.room_deletion_notice", {
user: eventSenderDisplayName(event),
})
}}
</div>
</template>
<script>
import messageMixin from "./messageMixin";
export default {
mixins: [messageMixin],
};
</script>
<style lang="scss">
@use "@/assets/css/chat.scss" as *;
</style>