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.
21 lines
462 B
21 lines
462 B
<template>
|
|
<v-app>
|
|
<v-app-bar color="primary" :clipped-left="false" fixed dark app>
|
|
<application-logo class="mr-3" style="max-height: 50" />
|
|
<h2>Laravel App</h2>
|
|
<v-spacer />
|
|
</v-app-bar>
|
|
<v-main>
|
|
<v-container>
|
|
<slot />
|
|
</v-container>
|
|
</v-main>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
import ApplicationLogo from '../components/ApplicationLogo.vue'
|
|
export default {
|
|
components: { ApplicationLogo },
|
|
}
|
|
</script>
|