summaryrefslogtreecommitdiff
path: root/src/client/components/signup-dialog.vue
blob: 76421d44ece5b30441ae062f6452a57d4434eed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<template>
<x-window @closed="() => { $emit('closed'); destroyDom(); }">
	<template #header>{{ $t('signup') }}</template>
	<x-signup/>
</x-window>
</template>

<script lang="ts">
import Vue from 'vue';
import i18n from '../i18n';
import XWindow from './window.vue';
import XSignup from './signup.vue';

export default Vue.extend({
	i18n,

	components: {
		XSignup,
		XWindow,
	},
});
</script>