This commit is contained in:
Matthieu Bessat 2020-07-08 15:44:18 +02:00
parent 207aa3a081
commit 9f6889a103
6 changed files with 67 additions and 37 deletions

17
src/layouts/Admin.vue Normal file
View file

@ -0,0 +1,17 @@
<template>
<div>
<h1>Admin Layout</h1>
<router-view></router-view>
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View file

@ -0,0 +1,17 @@
<template>
<div>
<h1>Organization Layout</h1>
<router-view></router-view>
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>