13 lines
302 B
Vue
13 lines
302 B
Vue
<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>
|
|
<VbenSpinner :spinning="spinning" />
|
|
</template>
|