Sharkey/src/client/app/mobile/views/pages/signup.vue
syuilo 25a69ec1b6
Refactoring of i18n (#3165)
Refactoring of i18n
2018-11-09 03:44:35 +09:00

29 lines
442 B
Vue

<template>
<div class="signup">
<h1>{{ $t('lets-start') }}</h1>
<mk-signup/>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
export default Vue.extend({
i18n: i18n('mobile/views/pages/signup.vue'),});
</script>
<style lang="stylus" scoped>
.signup
padding 32px
margin 0 auto
max-width 500px
h1
margin 0
padding 8px 0 0 0
font-size 1.5em
font-weight bold
color #444
</style>