You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
geografia-fe/geografia_vue/src/components/ChatHistory.vue

22 lines
409 B
Vue

<template>
<div id="ChatHistory">
{v-for key="messages" message in history.messages
<ChatMsg />
}
<div id="WriteMsg" border-radius="100%" color="white" background="blue">
+
</div>
{v-if (WriteMsg)} <Keyboard />
</div>
</template>
<script>
import Keyboard from "./Keyboard.vue";
export default {
components: { Keyboard },
setup() {},
};
</script>
<style scoped></style>