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/ChatPreview.vue

34 lines
757 B
Vue

<template>
<div class="chat-preview">
<div class="chat-picture">
<picture src="./icons/IconCommunity.vue" alt="chat-picture"></picture>
</div>
<div class="chat-text">
<div class="chat-name">
<h3>Test Test Test</h3>
</div>
<div class="chat-last-msg">
<p>Questo e' un messaggio di prova</p>
</div>
<div class="chat-info">
<div class="chat-seen" color="green"></div>
<div class="chat-date">Ven</div>
<div
class="chat-new-messages"
border-radius="100%"
color="white"
background="blue"
>1</div>
</div>
</div>
</div>
</template>
<script>
export default {
setup() {},
};
</script>
<style scoped></style>