diff --git a/app/components/common/Breadcrumb.vue b/app/components/common/Breadcrumb.vue index 1cd0116..642122a 100644 --- a/app/components/common/Breadcrumb.vue +++ b/app/components/common/Breadcrumb.vue @@ -7,7 +7,6 @@ import { BreadcrumbSeparator, } from '@/components/ui/breadcrumb'; import type { HTMLAttributes } from 'vue'; -import { cn } from '@/lib/utils'; import { computed } from 'vue'; const lastIndex = computed(() => props.items.length - 1); diff --git a/app/composables/index.ts b/app/composables/index.ts new file mode 100644 index 0000000..0bb27aa --- /dev/null +++ b/app/composables/index.ts @@ -0,0 +1,3 @@ +import { cn } from '@/lib/utils'; + +export { cn };