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/Home/app.js": "/js/vue/Home/app.js?id=aa9935664046e6bbb8aa",
"/js/vue/Modules/CRM/app.js": "/js/vue/Modules/CRM/app.js?id=69daf7bd7d44517ffaaf",
"/js/vue/Modules/Reservation/app.js": "/js/vue/Modules/Reservation/app.js?id=8a8b1f6e787ca9a75d5b",
"/js/vue/User/app.js": "/js/vue/User/app.js?id=815ce96ae40cc8c7560c"
"/js/vue/Authentication/app.js": "/js/vue/Authentication/app.js?id=134acc904eaadafa1fc7",
"/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=2139751456c29344a01f",
"/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=005df586071a65c170d0"
}

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

Loading…
Cancel
Save