diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-02-21 01:39:51 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-02-21 01:39:51 +0900 |
| commit | b2a6257f93612ed59a00548feff4712a5136faab (patch) | |
| tree | a4836cc16935aa4ec14ffb3b985e564b83e91560 /src/web/app/auth | |
| parent | wip (diff) | |
| download | sharkey-b2a6257f93612ed59a00548feff4712a5136faab.tar.gz sharkey-b2a6257f93612ed59a00548feff4712a5136faab.tar.bz2 sharkey-b2a6257f93612ed59a00548feff4712a5136faab.zip | |
wip
Diffstat (limited to 'src/web/app/auth')
| -rw-r--r-- | src/web/app/auth/views/index.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/web/app/auth/views/index.vue b/src/web/app/auth/views/index.vue index 56a7bac7a3..1e372c0bde 100644 --- a/src/web/app/auth/views/index.vue +++ b/src/web/app/auth/views/index.vue @@ -2,7 +2,7 @@ <div class="index"> <main v-if="os.isSignedIn"> <p class="fetching" v-if="fetching">読み込み中<mk-ellipsis/></p> - <fo-rm + <x-form ref="form" v-if="state == 'waiting'" :session="session" @@ -32,11 +32,11 @@ <script lang="ts"> import Vue from 'vue'; -import Form from './form.vue'; +import XForm from './form.vue'; export default Vue.extend({ components: { - 'fo-rm': Form + XForm }, data() { return { |