Merge pull request #2818 from boc-the-git/tidy-site-settings

fix: Rearrange defineComponent to remove warnings
This commit is contained in:
boc-the-git 2023-12-11 14:54:02 +11:00 committed by GitHub
commit 32616a8c2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -216,6 +216,7 @@ interface CheckApp extends CheckAppConfig {
}
export default defineComponent({
components: { AppLoader },
layout: "admin",
setup() {
// ==========================================================
@ -465,8 +466,7 @@ export default defineComponent({
return {
title: this.$t("settings.site-settings") as string,
};
},
components: { AppLoader }
}
});
</script>