chainInfo from server, routes, wallet rework

This commit is contained in:
Tim Olson
2023-10-04 03:40:47 -04:00
parent e7a9600c54
commit 7239987867
26 changed files with 603 additions and 297 deletions

View File

@@ -0,0 +1,19 @@
<template>
<v-card class="d-none d-md-block" :elevation="4">
<slot/>
</v-card>
<v-container class="d-md-none">
<slot/>
</v-container>
</template>
<script setup>
import {useStore} from "@/store/store";
const s = useStore()
</script>
<style scoped lang="scss">
@use "src/styles/vars" as *;
</style>