fix merge defect

This commit is contained in:
riku6460
2023-12-25 19:55:56 +09:00
parent 26be9bacc8
commit 9bfe864178
5 changed files with 11 additions and 17 deletions

View File

@@ -120,7 +120,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</template>
<script lang="ts" setup>
import { onMounted, ref } from 'vue';
import { onMounted, ref, computed } from 'vue';
import FormSection from '@/components/form/section.vue';
import MkKeyValue from '@/components/MkKeyValue.vue';
import * as os from '@/os.js';
@@ -140,9 +140,9 @@ onMounted(() => {
});
});
const headerActions = $computed(() => []);
const headerActions = computed(() => []);
const headerTabs = $computed(() => []);
const headerTabs = computed(() => []);
definePageMetadata({
title: i18n.ts.accountInfo,