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/Modules/Module/App.vue

24 lines
439 B

<template>
<v-app>
<div class="wrapper RTL">
<div id="app">
<div class="container-fluid">
<router-view></router-view>
</div>
</div>
</div>
</v-app>
</template>
<script>
export default {};
</script>
<style lang="scss">
#app {
padding: 2em 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</style>