11 lines
206 B
Vue
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>
|