Skip to content

Commit aba3a3f

Browse files
committed
refactor(router): remove history property
BREAKING CHANGE: the history property was marked as internal already. Since we need to pass the history instance to the router, we always have access to it, differently from Vue Router 3 where the history was instantiated internally. The history API was also internal (it wasn't documented), so this change shouldn't be a problem as people shouldn't be relying on `router.history` in their apps. If you think this property is needed, please open an issue to discuss the use case. Note it's already accessible as you have to create it: ```js export const history = createWebHistory() export const router = createRouter({ history, routes: [] }) ```
1 parent 10a071c commit aba3a3f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/router.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export interface Router {
144144
/**
145145
* @internal
146146
*/
147-
readonly history: RouterHistory
147+
// readonly history: RouterHistory
148148
readonly currentRoute: Ref<RouteLocationNormalizedLoaded>
149149
readonly options: RouterOptions
150150

@@ -910,7 +910,6 @@ export function createRouter(options: RouterOptions): Router {
910910
onError: errorHandlers.add,
911911
isReady,
912912

913-
history: routerHistory,
914913
install(app: App) {
915914
const router = this
916915
app.component('RouterLink', RouterLink)

0 commit comments

Comments
 (0)