mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-07 12:36:57 +00:00
fix imports in recent-notes.vue
This commit is contained in:
parent
dbcfbad196
commit
65ddf9ba8a
1 changed files with 3 additions and 3 deletions
|
@ -14,14 +14,14 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
|
||||
<script setup lang="ts">
|
||||
import { computed, shallowRef } from 'vue';
|
||||
import { definePageMetadata } from '@/utility/page-metadata.js';
|
||||
import type { PageHeaderItem } from '@/types/page-header.js';
|
||||
import { i18n } from '@/i18n.js';
|
||||
import { PageHeaderItem } from '@/types/page-header.js';
|
||||
import MkPageHeader from '@/components/global/MkPageHeader.vue';
|
||||
import SkUserRecentNotes from '@/components/SkUserRecentNotes.vue';
|
||||
import { acct } from '@/filters/user.js';
|
||||
import { createModel, createHeaderItem } from '@/utility/following-feed-utils.js';
|
||||
import MkStickyContainer from '@/components/global/MkStickyContainer.vue';
|
||||
import { definePage } from '@/page';
|
||||
|
||||
defineProps<{
|
||||
userId: string;
|
||||
|
@ -48,7 +48,7 @@ const headerActions: PageHeaderItem[] = [
|
|||
];
|
||||
|
||||
// Based on user/index.vue
|
||||
definePageMetadata(() => ({
|
||||
definePage(() => ({
|
||||
title: i18n.ts.user,
|
||||
icon: 'ti ti-user',
|
||||
...user.value ? {
|
||||
|
|
Loading…
Add table
Reference in a new issue