Pantelis Peslis

Results 2 comments of Pantelis Peslis

My workaround to use it with vue 3: ```vue import CryptoIcon from 'vue-cryptoicon/src/components/Cryptoicon'; import { Eth } from 'vue-cryptoicon/src/icons'; CryptoIcon.add([Eth]); export default { components: { CryptoIcon, }, } ```

Here's another workaround for short-lived processes: ```go package main import ( "context" "fmt" "go.uber.org/fx" ) func Run(opts ...fx.Option) { app := fx.New(opts...) if err := app.Start(context.Background()); err != nil {...