composables和utils的统一导出

This commit is contained in:
WindowBird 2025-11-12 16:03:33 +08:00
parent 7e77640d82
commit 44539cf7ac
3 changed files with 8 additions and 0 deletions

2
composables/index.js Normal file
View File

@ -0,0 +1,2 @@
export { useCustomerForm } from './useCustomerForm'
export { usePagination } from './usePagination'

5
utils/index.js Normal file
View File

@ -0,0 +1,5 @@
export * from './qiniu'
export * from './request'
export * from './taskConfig'
export * from './customerMappings'
export * from './textSolve'

1
utils/textSolve/index.js Normal file
View File

@ -0,0 +1 @@
export * from './truncateText'