mirror of
https://github.com/HoshinoSuzumi/rayine-ui.git
synced 2025-04-26 00:51:14 +08:00
chore: exports
This commit is contained in:
parent
b911671f19
commit
2995a60a0a
@ -56,7 +56,7 @@ export default defineNuxtModule<ModuleOptions>({
|
|||||||
async setup(_options, _nuxt) {
|
async setup(_options, _nuxt) {
|
||||||
const { resolve } = createResolver(import.meta.url);
|
const { resolve } = createResolver(import.meta.url);
|
||||||
|
|
||||||
const runtimePath = resolve("runtime");
|
const runtimePath = resolve("./runtime");
|
||||||
_nuxt.options.build.transpile.push(runtimePath);
|
_nuxt.options.build.transpile.push(runtimePath);
|
||||||
_nuxt.options.alias["#rayui"] = runtimePath;
|
_nuxt.options.alias["#rayui"] = runtimePath;
|
||||||
|
|
||||||
|
4
src/runtime/types/index.ts
Normal file
4
src/runtime/types/index.ts
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
export * from './button'
|
||||||
|
export * from './message'
|
||||||
|
|
||||||
|
export * from './utils'
|
@ -26,3 +26,5 @@ export const mergeUiConfig = <T>(strategy: Strategy, ...configs: any): T => {
|
|||||||
}
|
}
|
||||||
return defu({}, ...configs) as T;
|
return defu({}, ...configs) as T;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export * from './objectUtils'
|
||||||
|
Loading…
Reference in New Issue
Block a user