diff options
author | Zero~Informatique | 2019-12-24 02:22:56 +0100 |
---|---|---|
committer | Zero~Informatique | 2019-12-24 02:22:56 +0100 |
commit | 7c2576b0cfb0a15b2a14f6f5ea96de16f0c23b44 (patch) | |
tree | 1096617e6795916aa90e81ab50a7736f7d656943 /viewer/src/plugins/fontawesome.ts | |
parent | 139e2b76d23b13d2b3bb70fb1d5c1ea9dc255513 (diff) | |
download | ldgallery-7c2576b0cfb0a15b2a14f6f5ea96de16f0c23b44.tar.gz |
viewer: Plugin for Optional chaining and Coalesce. Implemented tag operations (intersection, addition, substraction). Unified Tag.Search
Diffstat (limited to 'viewer/src/plugins/fontawesome.ts')
-rw-r--r-- | viewer/src/plugins/fontawesome.ts | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/viewer/src/plugins/fontawesome.ts b/viewer/src/plugins/fontawesome.ts index e129c57..ba31c9e 100644 --- a/viewer/src/plugins/fontawesome.ts +++ b/viewer/src/plugins/fontawesome.ts | |||
@@ -1,9 +1,19 @@ | |||
1 | import Vue from "vue"; | 1 | import Vue from "vue"; |
2 | 2 | ||
3 | import { library } from "@fortawesome/fontawesome-svg-core"; | 3 | import { library } from "@fortawesome/fontawesome-svg-core"; |
4 | import { faExpandArrowsAlt, faFolder, faSearch, faTag } from "@fortawesome/free-solid-svg-icons"; | ||
5 | import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome"; | 4 | import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome"; |
5 | import { | ||
6 | faExpandArrowsAlt, | ||
7 | faFolder, | ||
8 | faSearch, | ||
9 | faTag | ||
10 | } from "@fortawesome/free-solid-svg-icons"; | ||
6 | 11 | ||
7 | library.add(faExpandArrowsAlt, faFolder, faSearch, faTag); | 12 | library.add( |
13 | faExpandArrowsAlt, | ||
14 | faFolder, | ||
15 | faSearch, | ||
16 | faTag, | ||
17 | ); | ||
8 | 18 | ||
9 | Vue.component("fa-icon", FontAwesomeIcon); | 19 | Vue.component("fa-icon", FontAwesomeIcon); |