Convert most code to ts

This commit is contained in:
2022-01-31 21:14:13 +00:00
parent 27508af3a7
commit 7cba471de7
12 changed files with 95 additions and 69 deletions

View File

@ -1,10 +1,11 @@
<script>
import NewBudget from '@/dialogs/NewBudget.vue';
<script lang="ts">
import NewBudget from '../dialogs/NewBudget.vue';
import { defineComponent } from 'vue';
export default {
export default defineComponent({
props: ["budgetid"],
components: { NewBudget }
}
})
</script>
<template>