You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/resources/js/Home/App.vue

50 lines
949 B

<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>
</template>
<script>
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("");
}
};
</script>
<style lang="scss">
#app {
background-color: transparent;
// -webkit-font-smoothing: antialiased;
// -moz-osx-font-smoothing: grayscale;
}
.WM-Container-Fluid {
width: 100%;
height: 100%;
}
</style>