mirror of https://github.com/nocodb/nocodb
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.
20 lines
318 B
20 lines
318 B
2 years ago
|
<template>
|
||
|
<v-layout>
|
||
|
<v-app-bar color="grey-lighten-2"></v-app-bar>
|
||
|
<!-- <v-navigation-drawer color="grey-darken-2" permanent></v-navigation-drawer>-->
|
||
|
<v-main>
|
||
|
<slot></slot>
|
||
|
</v-main>
|
||
|
</v-layout>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "default"
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|