Merge pull request 'fix' (#116) from dev into master

Reviewed-on: WillaEngine-Project/WillaEngine#116
pull/134/head
saeid_01 3 years ago
commit a1cf27d6fa

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

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

Loading…
Cancel
Save