withdrawls
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<v-combobox :items="Object.values(s.tokens)" :auto-select-first="true"
|
||||
<v-combobox :items="tokens" :auto-select-first="true"
|
||||
item-title="symbol"
|
||||
:filter-keys="['raw.name','raw.symbol','raw.address']"
|
||||
:model-value="modelValue"
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
<script setup>
|
||||
import {useStore as useStore2} from "@/store/store";
|
||||
import {ref} from "vue";
|
||||
import {computed, ref} from "vue";
|
||||
import {ethers} from "ethers";
|
||||
// noinspection ES6UnusedImports
|
||||
import {vAutoSelect} from "@/misc.js";
|
||||
@@ -32,6 +32,8 @@ const props = defineProps(['modelValue', 'label'])
|
||||
const emit = defineEmits(['update:modelValue'])
|
||||
const loading = ref(false)
|
||||
const errors = ref([])
|
||||
const tokens = computed(()=>Object.values(s.tokens))
|
||||
|
||||
|
||||
function good() {
|
||||
errors.value = []
|
||||
|
||||
Reference in New Issue
Block a user