19 lines
357 B
Vue
19 lines
357 B
Vue
<template>
|
|
<v-chip>
|
|
<!-- <v-avatar start :image="token.image === null ? '' : token.image"/>-->
|
|
{{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>
|