Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
diegopf committed Apr 26, 2024
1 parent b341d47 commit 7b27e5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions packages/_vue3-migration-test/src/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from './animations';
export { default as TestBaseDropdown } from './test-base-dropdown.vue';
export * from './scroll';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as TestScroll } from './test-scroll.vue';
5 changes: 1 addition & 4 deletions packages/_vue3-migration-test/src/router.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { createRouter, createWebHistory } from 'vue-router';
import TestScroll from './components/scroll/test-scroll.vue';
import { TestAnimateWidth, TestBaseDropdown, TestFade } from './';

import { TestAnimateWidth, TestBaseDropdown, TestFade, TestScroll } from './';

const routes = [
{
Expand All @@ -15,7 +13,6 @@ const routes = [
component: TestFade
},
{

path: '/scroll',
name: 'Scroll',
component: TestScroll
Expand Down

0 comments on commit 7b27e5b

Please sign in to comment.