Filtra Ricerca...

This commit is contained in:
Surya Paolo
2023-06-05 16:36:06 +02:00
parent e805088da7
commit bd3a9557e2
13 changed files with 1604 additions and 1528 deletions

View File

@@ -15,7 +15,7 @@ import { useCircuitStore } from '@store/CircuitStore'
export default defineComponent({
name: 'CMyUser',
components: { CSendCoins, CSaldo, CUserInfoAccount },
emits: ['setCmd'],
emits: ['setCmd', 'showInnerDialog'],
props: {
mycontact: {
type: Object as PropType<IUserFields | null>,
@@ -111,6 +111,11 @@ export default defineComponent({
}
}
function showsendCoin(value: boolean) {
showsendCoinTo.value = value
emit('showInnerDialog', showsendCoinTo.value)
}
onMounted(mounted)
return {
@@ -125,6 +130,7 @@ export default defineComponent({
circuit,
showAccountInfo,
showsendCoinTo,
showsendCoin,
}
},
})