diff --git a/packages/_vue3-migration-test/src/components/animations/index.ts b/packages/_vue3-migration-test/src/components/animations/index.ts index 4d2c00cf2b..a102e70e6b 100644 --- a/packages/_vue3-migration-test/src/components/animations/index.ts +++ b/packages/_vue3-migration-test/src/components/animations/index.ts @@ -3,3 +3,5 @@ export { default as TestCollapseHeight } from './test-collapse-height.vue'; export { default as TestCollapseWidth } from './test-collapse-width.vue'; export { default as TestCrossFade } from './test-cross-fade.vue'; export { default as TestFade } from './test-fade.vue'; +export { default as TestFadeAndSlide } from './test-fade-and-slide.vue'; +export { default as TestStaggeredFadeAndSlide } from './test-staggered-fade-and-slide.vue'; diff --git a/packages/_vue3-migration-test/src/components/animations/test-fade-and-slide.vue b/packages/_vue3-migration-test/src/components/animations/test-fade-and-slide.vue new file mode 100644 index 0000000000..8553f4e244 --- /dev/null +++ b/packages/_vue3-migration-test/src/components/animations/test-fade-and-slide.vue @@ -0,0 +1,11 @@ + + + diff --git a/packages/_vue3-migration-test/src/components/animations/test-staggered-fade-and-slide.vue b/packages/_vue3-migration-test/src/components/animations/test-staggered-fade-and-slide.vue new file mode 100644 index 0000000000..4384f4ca0c --- /dev/null +++ b/packages/_vue3-migration-test/src/components/animations/test-staggered-fade-and-slide.vue @@ -0,0 +1,11 @@ + + + diff --git a/packages/_vue3-migration-test/src/router.ts b/packages/_vue3-migration-test/src/router.ts index b0338e1304..fe652b0b80 100644 --- a/packages/_vue3-migration-test/src/router.ts +++ b/packages/_vue3-migration-test/src/router.ts @@ -11,10 +11,12 @@ import { TestElementsList, TestFacets, TestFade, + TestFadeAndSlide, TestScroll, TestSortDropdown, TestSortList, - TestSortPickerList + TestSortPickerList, + TestStaggeredFadeAndSlide } from './'; const routes = [ @@ -43,6 +45,16 @@ const routes = [ name: 'Fade', component: TestFade }, + { + path: '/fade-and-slide', + name: 'FadeAndSlide', + component: TestFadeAndSlide + }, + { + path: '/staggered-fade-and-slide', + name: 'StaggeredFadeAndSlide', + component: TestStaggeredFadeAndSlide + }, { path: '/base-dropdown', name: 'BaseDropdown',