pull/1/head
saeid 5 years ago
parent 986e0ad583
commit 82e020dcff

@ -1,7 +1,7 @@
{ {
"/js/vue/Authentication/app.js": "/js/vue/Authentication/app.js?id=70376fdc43efc4b13789", "/js/vue/Authentication/app.js": "/js/vue/Authentication/app.js?id=134acc904eaadafa1fc7",
"/js/vue/Home/app.js": "/js/vue/Home/app.js?id=aa9935664046e6bbb8aa", "/js/vue/Home/app.js": "/js/vue/Home/app.js?id=3253c6931ea41afed84c",
"/js/vue/Modules/CRM/app.js": "/js/vue/Modules/CRM/app.js?id=69daf7bd7d44517ffaaf", "/js/vue/Modules/CRM/app.js": "/js/vue/Modules/CRM/app.js?id=2139751456c29344a01f",
"/js/vue/Modules/Reservation/app.js": "/js/vue/Modules/Reservation/app.js?id=8a8b1f6e787ca9a75d5b", "/js/vue/Modules/Reservation/app.js": "/js/vue/Modules/Reservation/app.js?id=f47a1673003131cc1e67",
"/js/vue/User/app.js": "/js/vue/User/app.js?id=815ce96ae40cc8c7560c" "/js/vue/User/app.js": "/js/vue/User/app.js?id=005df586071a65c170d0"
} }

@ -1,40 +1,47 @@
<template> <template>
<v-app> <v-app>
<div id="app"> <div id="app">
<wm-background C1="1C0F41" C2="076371" C3="0C1630" ></wm-background> <wm-background C1="1C0F41" C2="076371" C3="0C1630"></wm-background>
<app-menu></app-menu> <app-menu></app-menu>
<v-content> <v-content>
<v-container fluid class="Login"> <v-container fluid class="Login">
<div class="Tile"> <div class="Tile">
<router-view></router-view> <router-view></router-view>
<!-- <wm-tiles-layout></wm-tiles-layout> --> <!-- <wm-tiles-layout></wm-tiles-layout> -->
</div> </div>
</v-container> </v-container>
</v-content> </v-content>
</div> </div>
</v-app> </v-app>
</template> </template>
<script> <script>
import Background from '@Global/components/Body/Backgrounds/Gradient-CSS'; import Background from "@Global/components/Body/Backgrounds/Gradient-CSS";
import Menu from '@Global/components/Drawer/SideBar'; import Menu from "@Global/components/Drawer/SideBar";
import { mapMutations } from "vuex";
export default { export default {
components: { components: {
'wm-background':Background, "wm-background": Background,
appMenu: Menu, appMenu: Menu
}, },
}; methods: {
...mapMutations("common", ["SET_CURRENT_MODULE"])
},
created() {
this.SET_CURRENT_MODULE("");
}
};
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
#app { #app {
background-color: transparent; background-color: transparent;
// -webkit-font-smoothing: antialiased; // -webkit-font-smoothing: antialiased;
// -moz-osx-font-smoothing: grayscale; // -moz-osx-font-smoothing: grayscale;
} }
.WM-Container-Fluid { .WM-Container-Fluid {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
</style> </style>

Loading…
Cancel
Save