-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathvueRouter.ts
More file actions
50 lines (48 loc) · 1.25 KB
/
vueRouter.ts
File metadata and controls
50 lines (48 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import { DocItem } from "../types";
const vueRouter: DocItem = {
"V4 en-US": {
icon: "../assets/logo/vue.png",
apiKey: "771d10c8c5cc48f7922f15048b4d931c",
appId: "BTNTW3I1XP",
indexName: "next_router_vuejs",
type: "algolia",
homepage: "https://router.vuejs.org/",
searchParameters: {
facetFilters: ["lang:en-US"],
},
},
"V4 zh-CN": {
icon: "../assets/logo/vue.png",
apiKey: "771d10c8c5cc48f7922f15048b4d931c",
appId: "BTNTW3I1XP",
indexName: "next_router_vuejs",
type: "algolia",
homepage: "https://router.vuejs.org/zh/",
searchParameters: {
facetFilters: ["lang:zh-CN"],
},
},
"V3 en-US": {
icon: "../assets/logo/vue.png",
apiKey: "08e7ef7cd3969442874f0dee9dec34be",
appId: "LI3RW4C4QI",
indexName: "vue-router",
type: "algolia",
homepage: "https://v3.router.vuejs.org/",
searchParameters: {
facetFilters: ["lang:en-US"],
},
},
"V3 zh-CN": {
icon: "../assets/logo/vue.png",
apiKey: "08e7ef7cd3969442874f0dee9dec34be",
appId: "LI3RW4C4QI",
indexName: "vue-router",
type: "algolia",
homepage: "https://v3.router.vuejs.org/zh/",
searchParameters: {
facetFilters: ["lang:zh-CN"],
},
},
};
export default vueRouter;