-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathvue.ts
More file actions
50 lines (48 loc) · 1.18 KB
/
vue.ts
File metadata and controls
50 lines (48 loc) · 1.18 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 vue: DocItem = {
"V3 en-US": {
icon: "../assets/logo/vue.png",
apiKey: "f49cbd92a74532cc55cfbffa5e5a7d01",
appId: "ML0LEBN7FQ",
indexName: "vuejs",
type: "algolia",
homepage: "https://vuejs.org/",
searchParameters: {
facetFilters: ["version:v3"],
},
},
"V3 zh-CN": {
icon: "../assets/logo/vue.png",
apiKey: "c23eb8e7895f42daeaf2bf6f63eb4bf6",
appId: "UURH1MHAF7",
indexName: "vuejs_cn2",
type: "algolia",
homepage: "https://vuejs.org/",
searchParameters: {
facetFilters: ["version:v3"],
},
},
"V2 en-US": {
icon: "../assets/logo/vue.png",
apiKey: "f49cbd92a74532cc55cfbffa5e5a7d01",
appId: "ML0LEBN7FQ",
indexName: "vuejs",
type: "algolia",
homepage: "https://v2.vuejs.org/",
searchParameters: {
facetFilters: ["version:v2"],
},
},
"V2 zh-CN": {
icon: "../assets/logo/vue.png",
apiKey: "c23eb8e7895f42daeaf2bf6f63eb4bf6",
appId: "UURH1MHAF7",
indexName: "vuejs_cn2",
type: "algolia",
homepage: "https://v2.cn.vuejs.org/",
searchParameters: {
facetFilters: ["version:v2"],
},
},
};
export default vue;