feat(command): add settings page

pull/649/head
三咲智子 2022-12-30 03:58:00 +08:00
rodzic 2332d7091a
commit fd93462f42
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 69992F2250DFD93E
1 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

@ -240,6 +240,7 @@ export const useCommands = (cmds: () => CommandProvider[]) => {
export const provideGlobalCommands = () => {
const { locale, t } = useI18n()
const { locales } = useI18n() as { locales: ComputedRef<LocaleObject[]> }
const router = useRouter()
const users = useUsers()
const masto = useMasto()
const colorMode = useColorMode()
@ -258,6 +259,17 @@ export const provideGlobalCommands = () => {
},
})
useCommand({
scope: 'Navigation',
name: () => t('nav.settings'),
icon: 'i-ri:settings-4-line',
onActivate() {
router.push('/settings')
},
})
useCommand({
scope: 'Preferences',