You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/history/hash.ts
+25-3
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,31 @@ import { createWebHistory } from './html5'
4
4
/**
5
5
* Creates a hash history.
6
6
*
7
-
* @param base - optional base to provide. Defaults to `/`
7
+
* @param base - optional base to provide. Defaults to `location.pathname` or
8
+
* `/` if at root. If there is a `base` tag in the `head`, its value will be
9
+
* **ignored**.
10
+
*
11
+
* @example
12
+
* ```js
13
+
* // at https://example.com/folder
14
+
* createWebHashHistory() // gives a url of `https://example.com/folder#`
15
+
* createWebHashHistory('/folder/') // gives a url of `https://example.com/folder/#`
16
+
* // if the `#` is provided in the base, it won't be added by `createWebHashHistory`
17
+
* createWebHashHistory('/folder/#/app/') // gives a url of `https://example.com/folder/#/app/`
18
+
* // you should avoid doing this because it changes the original url and breaks copying urls
19
+
* createWebHashHistory('/other-folder/') // gives a url of `https://example.com/other-folder/#`
20
+
*
21
+
* // at file:///usr/etc/folder/index.html
22
+
* // for locations with no `host`, the base is ignored
23
+
* createWebHashHistory('/iAmIgnored') // gives a url of `file:///usr/etc/folder/index.html#`
0 commit comments