14 lines
260 B
Vue
14 lines
260 B
Vue
<template>
|
|
<v-app>
|
|
<v-main>
|
|
<v-container class="pa-0" fluid height="100%">
|
|
<slot></slot>
|
|
</v-container>
|
|
</v-main>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script setup>
|
|
// 完全空白的佈局,僅提供 Vuetify 必要的容器結構
|
|
</script>
|