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

48 lines
988 B

6 years ago
<template>
5 years ago
<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>
6 years ago
</template>
<script>
5 years ago
import Background from "@Global/components/Body/Backgrounds/Gradient-CSS";
import Menu from "@Global/components/Drawer/SideBar";
import { mapMutations } from "vuex";
6 years ago
5 years ago
export default {
components: {
"wm-background": Background,
appMenu: Menu
},
methods: {
...mapMutations("common", ["SET_CURRENT_MODULE"])
},
created() {
this.SET_CURRENT_MODULE("");
}
};
6 years ago
</script>
<style lang="scss" scoped>
6 years ago
#app {
5 years ago
background-color: transparent;
// -webkit-font-smoothing: antialiased;
// -moz-osx-font-smoothing: grayscale;
}
.WM-Container-Fluid {
5 years ago
width: 100%;
height: 100%;
6 years ago
}
</style>