order page updates

This commit is contained in:
Tim
2024-03-27 22:05:56 -04:00
parent 6a01e5bab8
commit 9e884f57ac
7 changed files with 63 additions and 23 deletions

View File

@@ -0,0 +1,17 @@
<template>
<span>{{token.s}}</span>
</template>
<script setup>
import {useStore} from "@/store/store";
import {getToken} from "@/blockchain/token.js";
const s = useStore()
const props = defineProps(['addr'])
const token = await getToken(s.chainId, props.addr)
</script>
<style scoped lang="scss">
@use "src/styles/vars" as *;
</style>