2024-08-15 21:48:52 +08:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { VbenSpinner } from '@vben-core/shadcn-ui';
|
|
|
|
|
|
|
|
import { useContentSpinner } from './use-content-spinner';
|
|
|
|
|
|
|
|
defineOptions({ name: 'LayoutContentSpinner' });
|
|
|
|
|
|
|
|
const { spinning } = useContentSpinner();
|
|
|
|
</script>
|
|
|
|
<template>
|
2024-09-01 22:33:11 +08:00
|
|
|
<VbenSpinner :spinning="spinning" />
|
2024-08-15 21:48:52 +08:00
|
|
|
</template>
|