comparison client/src/main.js @ 1097:874d19f32015

added fontawesome5 and implemented one example icon on login screen
author Markus Kottlaender <markus@intevation.de>
date Thu, 01 Nov 2018 10:19:28 +0100
parents ca628dce90dd
children fb5c83d4ea1d
comparison
equal deleted inserted replaced
1093:31b36ef00784 1097:874d19f32015
26 import "../node_modules/animate.css/animate.min.css"; 26 import "../node_modules/animate.css/animate.min.css";
27 import "../node_modules/ol/ol.css"; 27 import "../node_modules/ol/ol.css";
28 import "../node_modules/cxlt-vue2-toastr/dist/css/cxlt-vue2-toastr.css"; 28 import "../node_modules/cxlt-vue2-toastr/dist/css/cxlt-vue2-toastr.css";
29 import "../node_modules/highlight.js/styles/paraiso-dark.css"; 29 import "../node_modules/highlight.js/styles/paraiso-dark.css";
30 import VTooltip from "v-tooltip"; 30 import VTooltip from "v-tooltip";
31 import { library } from "@fortawesome/fontawesome-svg-core";
32 import { faEye, faEyeSlash } from "@fortawesome/free-solid-svg-icons";
33 import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
34
35 library.add(faEye, faEyeSlash);
36 Vue.component("font-awesome-icon", FontAwesomeIcon);
31 37
32 Vue.use(VTooltip); 38 Vue.use(VTooltip);
33 39
34 var toastrConfigs = { 40 var toastrConfigs = {
35 position: "bottom center", 41 position: "bottom center",