-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π§ : use alias @ in all import and export paths
- Loading branch information
1 parent
26ca8e5
commit eb6dbbf
Showing
12 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export { default as AppDefaultLayout } from './default-layout.vue'; | ||
export { default as AppErrorLayout } from './error-layout.vue'; | ||
export { default as AppNoneLayout } from './none-layout.vue'; | ||
export { default as AppDefaultLayout } from '@/layouts/default-layout.vue'; | ||
export { default as AppErrorLayout } from '@/layouts/error-layout.vue'; | ||
export { default as AppNoneLayout } from '@/layouts/none-layout.vue'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default as dashboardRoutes } from './dashboard-routes'; | ||
export { default as dashboardRoutes } from '@/pages/dashboard/dashboard-routes'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default as jobsRoutes } from './jobs-routes'; | ||
export { default as jobsRoutes } from '@/pages/jobs/jobs-routes'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default as loginRoutes } from './login-routes'; | ||
export { default as loginRoutes } from '@/pages/login/login-routes'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default as modulesRoutes } from './modules-routes'; | ||
export { default as modulesRoutes } from '@/pages/modules/modules-routes'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default as settingsRoutes } from './settings-routes'; | ||
export { default as settingsRoutes } from '@/pages/settings/settings-routes'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default as stacksRoutes } from './stacks-routes'; | ||
export { default as stacksRoutes } from '@/pages/stacks/stacks-routes'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default as usersRoutes } from './users-routes'; | ||
export { default as usersRoutes } from '@/pages/users/users-routes'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export { default as AppPageNotFound } from './error-pages/page-not-found.vue'; | ||
export { default as AppPageForbidden } from './error-pages/page-forbidden.vue'; | ||
export { default as AppTopBar } from './topbar/top-bar.vue'; | ||
export { default as AppSideBar } from './sidebar/side-bar.vue'; | ||
export { default as AppPageNotFound } from '@/shared/components/error-pages/page-not-found.vue'; | ||
export { default as AppPageForbidden } from '@/shared/components/error-pages/page-forbidden.vue'; | ||
export { default as AppTopBar } from '@/shared/components/topbar/top-bar.vue'; | ||
export { default as AppSideBar } from '@/shared/components/sidebar/side-bar.vue'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
export { authenticationGuard } from './authentication-guard'; | ||
export { authenticationGuard } from '@/shared/services/authentication-guard'; | ||
export { | ||
getRequestedUrl, | ||
setRequestedUrl, | ||
hasRequestedUrl, | ||
removeRequestedUrl, | ||
} from './session-storage-service'; | ||
} from '@/shared/services/session-storage-service'; | ||
export { | ||
getCookie, | ||
setCookie, | ||
isCookieExisting, | ||
} from './cookie-service'; | ||
} from '@/shared/services/cookie-service'; |