initial checkin with timed order ui

This commit is contained in:
Tim Olson
2023-08-27 21:01:17 -04:00
commit 986a876f86
39 changed files with 2592 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<template>
<v-chip>
<!-- <v-avatar start :image="token.icon === null ? '' : token.icon"/>-->
{{token.symbol}}&nbsp;{{token.name}}
</v-chip>
</template>
<script setup>
import {useStore} from "@/store/store";
const s = useStore()
const props = defineProps(['token'])
</script>
<style scoped lang="scss">
@use "src/styles/vars" as *;
</style>