refactor(@vben/layouts): remove @vben/widgets and migrate to @vben/layouts/src/widgets

This commit is contained in:
vince
2024-07-09 22:49:36 +08:00
parent d26a4ee022
commit 2731a1ec96
81 changed files with 62 additions and 182 deletions

View File

@@ -0,0 +1,9 @@
<script setup lang="ts">
import { Toaster } from '@vben-core/shadcn-ui';
defineOptions({ name: 'GlobalProvider' });
</script>
<template>
<Toaster />
<slot></slot>
</template>

View File

@@ -0,0 +1 @@
export { default as GlobalProvider } from './global-provider.vue';

View File

@@ -2,4 +2,5 @@ export * from './about';
export * from './authentication';
export * from './dashboard';
export * from './fallback';
export * from './global-provider';
export { useToast } from '@vben-core/shadcn-ui';