mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-10-14 05:43:41 +08:00
12 lines
210 B
Vue
12 lines
210 B
Vue
<template>
|
|
<global-content :show-padding="false" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { GlobalContent } from '../common';
|
|
|
|
defineOptions({ name: 'BlankLayout' });
|
|
</script>
|
|
|
|
<style scoped></style>
|