26 lines
627 B
JavaScript
26 lines
627 B
JavaScript
// eveai_chat_client/static/assets/js/composables/index.js
|
|
|
|
/**
|
|
* Vue 3 Composables Barrel Export
|
|
* Provides easy access to all composables
|
|
*/
|
|
|
|
// Icon Management Composables
|
|
export {
|
|
useIconManager,
|
|
useIcon,
|
|
useFormIcon
|
|
} from './useIconManager.js';
|
|
|
|
// Translation Management Composables
|
|
export {
|
|
useTranslation,
|
|
useTranslationClient,
|
|
useReactiveTranslation
|
|
} from './useTranslation.js';
|
|
|
|
// Future composables can be added here:
|
|
// export { useFormValidation } from './useFormValidation.js';
|
|
// export { useChat } from './useChat.js';
|
|
|
|
console.log('Vue 3 composables loaded successfully'); |