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

41 lines
990 B

<template>
<v-app>
<div id="app">
<wm-background></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';
import Menu from '@Global/components/Drawer/SideBar';
export default {
components: {
'wm-background':Background,
appMenu: Menu,
},
};
</script>
<style lang="scss" scoped>
#app {
background-color: transparent;
// -webkit-font-smoothing: antialiased;
// -moz-osx-font-smoothing: grayscale;
}
.WM-Container-Fluid {
width: 100%;
height: 100%;
}
</style>