initial checkin with timed order ui
This commit is contained in:
18
src/components/TokenChip.vue
Normal file
18
src/components/TokenChip.vue
Normal file
@@ -0,0 +1,18 @@
|
||||
<template>
|
||||
<v-chip>
|
||||
<!-- <v-avatar start :image="token.icon === null ? '' : token.icon"/>-->
|
||||
{{token.symbol}} {{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>
|
||||
Reference in New Issue
Block a user