refactor(project): remove the use of core internal bem syntax

This commit is contained in:
vben
2024-07-14 16:28:56 +08:00
parent fed422e187
commit ebf73b2df9
37 changed files with 730 additions and 173 deletions

View File

@@ -1,11 +1,11 @@
<script setup lang="ts">
import { useForwardPropsEmits } from '@vben-core/hooks';
import {
Dialog,
DialogContent,
DialogDescription,
DialogTitle,
VisuallyHidden,
useForwardPropsEmits,
} from '@vben-core/shadcn-ui';
import AuthenticationLogin from './login.vue';

View File

@@ -1,12 +1,12 @@
<script setup lang="ts">
import type { TabsOption } from '@vben/types';
import type { TabOption } from '@vben/types';
import { computed } from 'vue';
import { Tabs, TabsContent, TabsList, TabsTrigger } from '@vben-core/shadcn-ui';
interface Props {
tabs: TabsOption[];
tabs: TabOption[];
}
defineOptions({