20 lines
343 B
Vue
20 lines
343 B
Vue
<template
|
|
lang="html"
|
|
functional
|
|
>
|
|
<div
|
|
class="pa-4 layout column align-center card-background"
|
|
style="height: calc(100vh - 96px); display: flex;"
|
|
>
|
|
<v-card
|
|
style="height: 100%; width: 100%; max-width: 1800px;"
|
|
>
|
|
<slot />
|
|
</v-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="js">
|
|
export default {}
|
|
</script>
|