summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/views/components/settings-window.vue
blob: 42477177483d1b8843a3e7aa25a6d0cc9c507576 (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
25
26
27
28
29
30
<template>
<mk-window ref="window" is-modal width="700px" height="550px" @closed="destroyDom">
	<span slot="header" :class="$style.header">%fa:cog%%i18n:@settings%</span>
	<mk-settings :initial-page="initialPage" @done="close"/>
</mk-window>
</template>

<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
	props: {
		initialPage: {
			type: String,
			required: false
		}
	},
	methods: {
		close() {
			(this as any).$refs.window.close();
		}
	}
});
</script>

<style lang="stylus" module>
.header
	> [data-fa]
		margin-right 4px

</style>