hesabixCore/webUI/src/views/public/PublicLayout.vue

26 lines
347 B
Vue

<template>
<v-app>
<!-- Main Content -->
<v-main>
<router-view />
</v-main>
</v-app>
</template>
<script>
export default {
name: 'PublicLayout',
methods: {
goToLogin() {
this.$router.push({ name: 'user_login' })
}
}
}
</script>
<style scoped>
.v-app-bar {
border-bottom: 1px solid #e0e0e0;
}
</style>