Christhofer Natalius

Results 40 comments of Christhofer Natalius

There's already some pull requests about this, and all of them being rejected You can see them #259, #991, #1442

Is this what you mean? ``` import Vue from 'vue' import { VTooltip, VPopover, VClosePopover } from 'v-tooltip' Vue.directive('tooltip', VTooltip) Vue.directive('close-popover', VClosePopover) Vue.component('v-popover', VPopover) ``` https://github.com/Akryum/v-tooltip#npm

I've made a pull request for this as well #243 The pull request was automatically close when the branch master is somehow got deleted. Check out @robmadole 's answer there

This is incorrect `` It should be ``

What you are doing in the 2nd code is not tree shaking, you are importing all the icons Try to build it and compare their bundle size.

``` import {faCircle, faBookOpen, faDollarSign, faDesktop} from "@fortawesome/pro-solid-svg-icons"; ``` By doing this, only 4 icons are imported, so the final bundle only contains 4 icons you need instead of all...

@angelhdzmultimedia `icon="eye"` use solid icons by default but for other icons, you need to use `:icon=['far', 'icon-name']` See [documentation](https://github.com/FortAwesome/vue-fontawesome#using-solid-icons) ![image](https://user-images.githubusercontent.com/13524958/154003117-07fc45ed-de04-4ccc-92ae-a78a7144c667.png) I've created pull request #243 to allow us change the...

@angelhdzmultimedia Just read the documentation. I'm not the one that create this "ugly" syntax. I'm using pro license, so I can't just use `icon="user-secret"`, I have to use `:icon="['far', 'user-secret']"`...

@jasonlundien I'd like to be able to set the default icon style. Currently if we use ``, it always defaults to solid. I want to be able to specify the...

@jasonlundien Is there a reason why we need to type the whole string `"fa-solid fa-user-secret"`? Why not shorten it to just `"fas user-secret"` or `"fas-user-secret"` like all of us here...