diff options
author | Zero~Informatique | 2019-12-21 02:06:02 +0100 |
---|---|---|
committer | Zero~Informatique | 2019-12-21 02:06:02 +0100 |
commit | 62005141132da1e9761598fa3e4b35b4dab38a89 (patch) | |
tree | 3ff8b9f3acd07801075202f9eb2d2f2dfd328ff5 /viewer/src/plugins/fontawesome.ts | |
parent | bdce958eddc527912a57afa5b8151e1a90e38355 (diff) | |
download | ldgallery-62005141132da1e9761598fa3e4b35b4dab38a89.tar.gz |
Implemented VueX and a basic UIStore with the fullscreen mutation
Some renaming
Diffstat (limited to 'viewer/src/plugins/fontawesome.ts')
-rw-r--r-- | viewer/src/plugins/fontawesome.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/viewer/src/plugins/fontawesome.ts b/viewer/src/plugins/fontawesome.ts new file mode 100644 index 0000000..9bf4dba --- /dev/null +++ b/viewer/src/plugins/fontawesome.ts | |||
@@ -0,0 +1,9 @@ | |||
1 | import Vue from "vue"; | ||
2 | |||
3 | import { library } from "@fortawesome/fontawesome-svg-core"; | ||
4 | import { faExpandArrowsAlt } from "@fortawesome/free-solid-svg-icons"; | ||
5 | import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome"; | ||
6 | |||
7 | library.add(faExpandArrowsAlt); | ||
8 | |||
9 | Vue.component("fa-icon", FontAwesomeIcon); | ||