Circuits OK

Accounts Ok
Movements OK
This commit is contained in:
Paolo Arena
2022-09-14 11:31:48 +02:00
parent 44c75768c6
commit 25a60472ab
34 changed files with 299 additions and 119 deletions

51
src/components/CSaldo/CSaldo.ts Executable file
View File

@@ -0,0 +1,51 @@
import { defineComponent, onMounted, PropType, ref, watch } from 'vue'
import { tools } from '@src/store/Modules/tools'
import { CCurrencyValue } from '../CCurrencyValue'
import { date, useQuasar } from 'quasar'
import { useI18n } from '@/boot/i18n'
export default defineComponent({
name: 'CSaldo',
props: {
symbol: {
type: String,
required: true,
},
saldo: {
type: Number,
required: true,
default: 0,
},
qtarem: {
type: Number,
required: false,
default: 0,
},
color: {
type: String,
required: false,
default: '',
},
},
components: { CCurrencyValue },
setup(props, { emit }) {
const $q = useQuasar()
const { t } = useI18n()
const showingtooltip = ref(false)
function created() {
// created
}
onMounted(created)
return {
showingtooltip,
t,
}
},
})