mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2025-12-10 04:09:29 +02:00
26 lines
447 B
Vue
26 lines
447 B
Vue
<template>
|
|
<aside class="chat">
|
|
<div class="chat__content">
|
|
<div class="chat__container--title">
|
|
<div class="chat__title">
|
|
<h2>Чат</h2>
|
|
</div>
|
|
<div class="chat__icon">
|
|
<img src="@/assets/icons-chat/chat-icon.png">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</aside>
|
|
</template>
|
|
|
|
<script>
|
|
import '@/assets/css/ElementsStyles/chat.css'
|
|
|
|
export default {
|
|
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |