chainInfo from server, routes, wallet rework
This commit is contained in:
13
src/components/Alerts.vue
Normal file
13
src/components/Alerts.vue
Normal 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>
|
||||
Reference in New Issue
Block a user