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

13
src/components/Alerts.vue Normal file
View File

@@ -0,0 +1,13 @@
<template>
<v-alert v-for="e in s.errors" icon="mdi-alert" color="error" :title="e.title" :text="e.text" class="mb-3" :closable="e.closeable"/>
</template>
<script setup>
import {useStore} from "@/store/store";
const s = useStore()
console.log('errors', s.errors)
</script>
<style scoped lang="scss">
@use "src/styles/vars" as *;
</style>