2022-09-13 01:54:02 +00:00
|
|
|
<template>
|
2022-09-15 19:45:34 +00:00
|
|
|
<v-container fill-height class="pa-0">
|
2022-09-15 20:30:25 +00:00
|
|
|
<v-layout class="flex-wrap">
|
|
|
|
|
<v-col cols="12" sm="4">
|
2022-09-24 16:45:51 +00:00
|
|
|
<slot name="left" />
|
2022-09-15 17:48:55 +00:00
|
|
|
</v-col>
|
2022-09-15 20:30:25 +00:00
|
|
|
<v-col cols="12" sm="8">
|
2022-09-24 16:45:51 +00:00
|
|
|
<slot name="right" />
|
2022-09-15 17:48:55 +00:00
|
|
|
</v-col>
|
2022-09-15 15:04:01 +00:00
|
|
|
</v-layout>
|
2022-09-13 01:54:02 +00:00
|
|
|
</v-container>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts">
|
2022-09-15 17:48:55 +00:00
|
|
|
import { Component, Vue } from "vue-property-decorator";
|
2022-09-13 01:54:02 +00:00
|
|
|
|
|
|
|
|
@Component
|
2022-09-15 17:48:55 +00:00
|
|
|
export default class Dashboard extends Vue {}
|
2022-09-13 01:54:02 +00:00
|
|
|
</script>
|
|
|
|
|
|
2023-10-26 22:28:59 +00:00
|
|
|
<style></style>
|