vue-cryptoicon
vue-cryptoicon copied to clipboard
How to apply it to vue3.0 project?
How to apply it to vue3.0 project?
same issue, did you find any solution??
same issue, did you find any solution??
https://github.com/TokenTax/cryptoicon-api It may be useful
This would be an incredible improvement. I am trying to figure how to solve this, I'll post later if found a solution.
My workaround to use it with vue 3:
<template>
<CryptoIcon symbol="eth" size="24" />
</template>
<script>
import CryptoIcon from 'vue-cryptoicon/src/components/Cryptoicon';
import { Eth } from 'vue-cryptoicon/src/icons';
CryptoIcon.add([Eth]);
export default {
components: {
CryptoIcon,
},
}
</script>
import CryptoIcon from 'vue-cryptoicon/src/components/Cryptoicon';
It's saying: Failed to resolve import "vue-cryptoicon/src/components/Cryptoicon" from "src\main.js". Does the file exist? Is there any new update? Because this issue is openned since 2021.
import CryptoIcon from 'vue-cryptoicon/src/components/Cryptoicon';
It's saying: Failed to resolve import "vue-cryptoicon/src/components/Cryptoicon" from "src\main.js". Does the file exist? Is there any new update? Because this issue is openned since 2021.
Same error that I got after using his solution. I tried putting ".vue" to it and now it works.
import CryptoIcon from 'vue-cryptoicon/src/components/Cryptoicon.vue';