adding ChatInformation Popup
This commit is contained in:
parent
1416f37c67
commit
8d1fabf695
@ -43,6 +43,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<newMessage />
|
<newMessage />
|
||||||
<topBanner />
|
<topBanner />
|
||||||
|
<chatInformations />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -52,6 +53,7 @@ import message from './components/message.vue';
|
|||||||
import messageReceive from './components/messageReceive.vue';
|
import messageReceive from './components/messageReceive.vue';
|
||||||
import newMessage from './components/newMessage.vue';
|
import newMessage from './components/newMessage.vue';
|
||||||
import topBanner from './components/topBanner.vue';
|
import topBanner from './components/topBanner.vue';
|
||||||
|
import chatInformations from './components/chatInformations.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'App',
|
name: 'App',
|
||||||
@ -59,7 +61,8 @@ export default {
|
|||||||
message,
|
message,
|
||||||
messageReceive,
|
messageReceive,
|
||||||
newMessage,
|
newMessage,
|
||||||
topBanner
|
topBanner,
|
||||||
|
chatInformations
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
18
src/components/chatInformations.vue
Normal file
18
src/components/chatInformations.vue
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<template>
|
||||||
|
<div class="chatInformations">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script >
|
||||||
|
export default {
|
||||||
|
name: "chatInformations"
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style scoped>
|
||||||
|
.chatInformations{
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-color: #f00;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue
Block a user