Circuits OK
Accounts Ok Movements OK
This commit is contained in:
51
src/components/CSaldo/CSaldo.ts
Executable file
51
src/components/CSaldo/CSaldo.ts
Executable 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,
|
||||
}
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user