Convert other pages to composition API
This commit is contained in:
@ -1,10 +1,8 @@
|
||||
<script lang="ts">
|
||||
import { defineComponent } from "vue";
|
||||
<script lang="ts" setup>
|
||||
import { onMounted } from 'vue';
|
||||
|
||||
export default defineComponent({
|
||||
mounted() {
|
||||
document.title = "Budgeteer - Admin";
|
||||
},
|
||||
onMounted(() => {
|
||||
document.title = "Budgeteer - Admin";
|
||||
})
|
||||
</script>
|
||||
|
||||
|
Reference in New Issue
Block a user