18 lines
360 B
Vue
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>
|