mirror of
https://github.com/DavidHDev/vue-bits.git
synced 2026-03-07 06:29:30 -07:00
23 lines
491 B
TypeScript
23 lines
491 B
TypeScript
const animations = {
|
|
'fade-content': () => import("../demo/Animations/FadeContentDemo.vue"),
|
|
};
|
|
|
|
const textAnimations = {
|
|
'split-text': () => import("../demo/TextAnimations/SplitTextDemo.vue"),
|
|
};
|
|
|
|
const components = {
|
|
'masonry': () => import("../demo/Components/MasonryDemo.vue"),
|
|
};
|
|
|
|
const backgrounds = {
|
|
'dot-grid': () => import("../demo/Backgrounds/DotGridDemo.vue"),
|
|
};
|
|
|
|
export const componentMap = {
|
|
...animations,
|
|
...textAnimations,
|
|
...components,
|
|
...backgrounds,
|
|
};
|