-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNavMenu.js
More file actions
35 lines (34 loc) · 1.05 KB
/
NavMenu.js
File metadata and controls
35 lines (34 loc) · 1.05 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
import { markRaw } from "vue";
import { Comment, Document, List, Notebook } from "@element-plus/icons-vue";
export default {
name: "NavMenu",
data() {
return {
isMenuActived: false,
resourcesTriggerIcon: markRaw(List),
resourceItems: [
{
key: "docs",
label: "Documentation",
href: "https://www.drycc.com",
icon: markRaw(Document),
external: true
},
{
key: "community",
label: "Community Support",
href: "https://www.drycc.cc/community/",
icon: markRaw(Comment),
external: true
},
{
key: "blog",
label: "Drycc.cc Blog",
href: "https://www.drycc.cc/blog/",
icon: markRaw(Notebook),
external: true
},
]
}
}
}