ui: add more settings entry

This commit is contained in:
Anthony Fu 2022-12-27 00:04:24 +01:00
parent 93218f9d49
commit 8a062f5573
5 changed files with 91 additions and 1 deletions

View file

@ -0,0 +1,21 @@
<script lang="ts" setup>
const { lg } = breakpoints
</script>
<template>
<MainContent :back="!lg">
<template #title>
<div text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
<span>{{ $t('settings.interface.label') }}</span>
</div>
</template>
<div text-center mt-10>
<h1 text-4xl>
🚧
</h1>
<h3 text-xl>
{{ $t('settings.interface.label') }}
</h3>
</div>
</MainContent>
</template>