refactor: ページの追加を容易にするためにめっちゃ変えた

This commit is contained in:
kakkokari-gtyih 2024-08-12 17:06:34 +09:00
parent f84d9fdcc8
commit d5ea00846a
11 changed files with 259 additions and 137 deletions

View file

@ -30,6 +30,7 @@ import MkSwitch from '@/components/MkSwitch.vue';
import MkInfo from '@/components/MkInfo.vue';
import { misskeyApi } from '@/scripts/misskey-api.js';
import { signinRequired } from '@/account.js';
import type { TutorialPageCommonExpose } from '@/components/MkTutorial.vue';
const $i = signinRequired();
@ -48,6 +49,10 @@ watch([isLocked, publicReactions, hideOnlineStatus, noCrawle, preventAiLearning]
preventAiLearning: !!preventAiLearning.value,
});
});
defineExpose<TutorialPageCommonExpose>({
canContinue: true,
});
</script>
<style lang="scss" module>