Sha256: a1cce88f0f7c317f354ee9ff72dc53583ca3a29eca8e904dfeebe3c3b0008076
Contents?: true
Size: 800 Bytes
Versions: 17
Compression:
Stored size: 800 Bytes
Contents
import "bulma/css/bulma.css" import "bulma-helpers/css/bulma-helpers.min.css" import "font-awesome-animation/css/font-awesome-animation.min.css" import { library } from "@fortawesome/fontawesome-svg-core" import { faArrowRight, faCheck, faEdit, faExclamation, faInfoCircle, faLightbulb, faPlus, faSearch, faSpinner, faTimes } from "@fortawesome/free-solid-svg-icons" import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome" import { createApp } from "vue" import App from "@/App.vue" import router from "@/router" library.add( faArrowRight, faCheck, faEdit, faExclamation, faInfoCircle, faLightbulb, faPlus, faSearch, faSpinner, faTimes ) const app = createApp(App) app.component("font-awesome-icon", FontAwesomeIcon) app.use(router).mount("#app")
Version data entries
17 entries across 17 versions & 1 rubygems