hardlounge/client/components/MessageTypes/mode_user.vue

25 lines
488 B
Vue
Raw Normal View History

2021-12-04 02:42:36 -08:00
<template>
<span class="content">
Your user mode is <b>{{ message.raw_modes }}</b>
</span>
</template>
<script lang="ts">
import {defineComponent, PropType} from "vue";
import {ClientNetwork, ClientMessage} from "../../js/types";
export default defineComponent({
2021-12-04 02:42:36 -08:00
name: "MessageChannelMode",
props: {
network: {
type: Object as PropType<ClientNetwork>,
required: true,
},
message: {
type: Object as PropType<ClientMessage>,
required: true,
},
2021-12-04 02:42:36 -08:00
},
});
2021-12-04 02:42:36 -08:00
</script>