pull/116/head
saeid 3 years ago
parent 0cf998327f
commit c77bc9d103

@ -1,49 +1,49 @@
<template> <template>
<v-app> <v-app>
<div id="app" class="we-dark"> <div id="app" class="we-dark">
<wm-background C1="fff" C2="f1f1f1" C3="fff"/> <wm-background C1="fff" C2="f1f1f1" C3="fff"/>
<app-menu/> <app-menu/>
<v-main> <v-main>
<v-container fluid class="Login"> <v-container fluid class="Login">
<div class="Tile"> <div class="Tile">
<router-view/> <router-view/>
<!-- <wm-tiles-layout></wm-tiles-layout> --> </div>
</div> </v-container>
</v-container> </v-main>
</v-main> </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"; import {mapMutations} from "vuex";
export default { export default {
components: { components: {
"wm-background": Background, "wm-background": Background,
appMenu: Menu appMenu: Menu
}, },
methods: { methods: {
...mapMutations("common", ["SET_CURRENT_MODULE"]) ...mapMutations("common", ["SET_CURRENT_MODULE"])
}, },
created() { created() {
this.SET_CURRENT_MODULE(""); this.SET_CURRENT_MODULE("product");
} }
}; };
</script> </script>
<style lang="scss"> <style lang="scss">
#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 {
width: 100%; .WM-Container-Fluid {
height: 100%; width: 100%;
} height: 100%;
}
</style> </style>

@ -6,23 +6,21 @@ import store from './store'
//vuetify //vuetify
import vuetify from '@Global/plugins/vuetify' import vuetify from '@Global/plugins/vuetify'
//Policy
import './policy'
//veeValidate => 0.3MB
import "@Global/plugins/veeValidate";
//components //components
import '@Global/plugins/globalComponent.js' import '@Global/plugins/globalComponent.js'
//Policy
import './policy'
//hint text //hint text
import HintText from "@Global/components/Texts/Hint.vue"; import HintText from "@Global/components/Texts/Hint.vue";
Vue.component('wm-hint-text', HintText) Vue.component('wm-hint-text', HintText)
//vue
window.Vue = Vue;
//mixin //mixin
import { global } from "@Global/mixins/global"; import { global } from "@Global/mixins/global";
import { commingSoon } from "@Global/mixins/commingSoon"; import { commingSoon } from "@Global/mixins/commingSoon";

Loading…
Cancel
Save