You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
433 B
31 lines
433 B
<script setup lang="ts">
|
|
definePage({
|
|
name: "home",
|
|
alias: ["/", "/home"],
|
|
meta: {
|
|
cache: true,
|
|
},
|
|
});
|
|
defineOptions({
|
|
name: "home",
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="home">
|
|
<div class="chatbox-placeholder">
|
|
<ChatBox></ChatBox>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.home {
|
|
height: 100%;
|
|
}
|
|
.chatbox-placeholder {
|
|
max-width: 1000px;
|
|
margin: 0 auto;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
|