summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/views/pages/settings.vue
blob: 7aba863b7cd65485987aee6c395978b89fca5298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<template>
<mk-ui>
	<main>
		<x-settings :in-window="false"/>
	</main>
</mk-ui>
</template>

<script lang="ts">
import Vue from 'vue';

export default Vue.extend({
	components: {
		XSettings: () => import('../components/settings.vue').then(m => m.default)
	},
});
</script>

<style lang="stylus" scoped>
main
	margin 0 auto
	max-width 900px

</style>