mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2025-12-10 12:19:31 +02:00
create duple game
This commit is contained in:
39
luckydiamond/src/pages/games-pages/DoublePage.vue
Normal file
39
luckydiamond/src/pages/games-pages/DoublePage.vue
Normal file
@@ -0,0 +1,39 @@
|
||||
<template>
|
||||
<div class="content-grid--double">
|
||||
<aside-bar-component></aside-bar-component>
|
||||
<chat-component></chat-component>
|
||||
<section class="double">
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<header-component></header-component>
|
||||
<double-component></double-component>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import DoubleComponent from "@/components/DoubleComponent.vue";
|
||||
import AsideBarComponent from "@/components/AsidebarComponent.vue";
|
||||
import HeaderComponent from "@/components/HeaderComponent.vue";
|
||||
import ChatComponent from "@/components/ChatComponent.vue";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
Object: {
|
||||
bg: "value",
|
||||
nickname: "value",
|
||||
icons: {},
|
||||
textTacholgy: { text1: "text2" },
|
||||
},
|
||||
};
|
||||
},
|
||||
name: "HelpPage",
|
||||
components: {
|
||||
HeaderComponent,
|
||||
AsideBarComponent,
|
||||
DoubleComponent,
|
||||
ChatComponent,
|
||||
},
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user