fix(client): fix wrong link in tutorial

Fix #9456
This commit is contained in:
syuilo
2023-01-02 13:19:32 +09:00
parent d98771711f
commit 6e0c39b1d7
4 changed files with 10 additions and 5 deletions

View File

@@ -43,11 +43,14 @@ import { i18n } from '@/i18n';
import { instance } from '@/instance';
import XUserList from '@/components/MkUserList.vue';
const props = defineProps<{
const props = withDefaults(defineProps<{
tag?: string;
}>();
initialTab?: string;
}>(), {
initialTab: 'featured',
});
let tab = $ref('featured');
let tab = $ref(props.initialTab);
let tagsEl = $ref<InstanceType<typeof MkFolder>>();
let searchQuery = $ref(null);
let searchOrigin = $ref('combined');