Files
yourpart3/frontend/src/views/settings/FalukantView.vue
Torsten Schulz (local) e2ed65bede
All checks were successful
Deploy to production / deploy (push) Successful in 2m8s
feat(falukant): add visibility toggle for settings widget and update navigation labels
2026-07-24 12:00:10 +02:00

18 lines
360 B
Vue

<template>
<div>
<h2>{{ $t("settings.falukant.title") }}</h2>
<SettingsWidget :settingsType="'falukant'" :show-visibility="false" />
</div>
</template>
<script>
import SettingsWidget from '@/components/SettingsWidget.vue';
export default {
name: 'FalukantSettingsView',
components: {
SettingsWidget,
}
}
</script>