Files
web/src/App.vue
2025-01-16 20:17:03 -04:00

11 lines
206 B
Vue

<template>
<router-view/>
<support-chat/>
</template>
<script setup>
import SupportChat from "@/components/SupportChat.vue";
import {detectChain} from "@/blockchain/wallet.js";
detectChain()
</script>