-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to apply it to vue3.0 project? #7
Comments
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> |
It's saying: |
Same error that I got after using his solution. I tried putting ".vue" to it and now it works.
|
How to apply it to vue3.0 project?
The text was updated successfully, but these errors were encountered: