wallet-connect-web-examples/advanced/dapps/vue-dapp-auth/components/WcLabel.vue
Glitch deb123f283
restructure (#345)
* restructure

* udpate readme links
2023-12-13 15:36:25 -03:00

13 lines
351 B
Vue

<template>
<div class="tw-p-2.5 tw-rounded tw-inline-flex tw-items-center tw-gap-2 tw-bg-dim-1">
<img src="/img/wc-bg.png" alt="WalletConnect logo" class="tw-size-8">
<span class="tw-px-0.5">
v{{ authClientVersion }}
</span>
</div>
</template>
<script setup lang="ts">
const { authClientVersion } = useRuntimeConfig()
</script>