From c30fff623d0d8f644184a6a4e040a08d098840ed Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 22 Feb 2018 05:30:37 +0900 Subject: wip --- src/web/app/mobile/views/components/index.ts | 6 + src/web/app/mobile/views/components/posts-post.vue | 412 -------------------- src/web/app/mobile/views/components/posts.post.vue | 415 +++++++++++++++++++++ src/web/app/mobile/views/components/posts.vue | 7 +- src/web/app/mobile/views/components/ui.header.vue | 6 +- src/web/app/mobile/views/components/ui.nav.vue | 4 +- 6 files changed, 432 insertions(+), 418 deletions(-) delete mode 100644 src/web/app/mobile/views/components/posts-post.vue create mode 100644 src/web/app/mobile/views/components/posts.post.vue (limited to 'src/web/app') diff --git a/src/web/app/mobile/views/components/index.ts b/src/web/app/mobile/views/components/index.ts index f628dee883..8462cdb3eb 100644 --- a/src/web/app/mobile/views/components/index.ts +++ b/src/web/app/mobile/views/components/index.ts @@ -1,5 +1,11 @@ import Vue from 'vue'; import ui from './ui.vue'; +import home from './home.vue'; +import timeline from './timeline.vue'; +import posts from './posts.vue'; Vue.component('mk-ui', ui); +Vue.component('mk-home', home); +Vue.component('mk-timeline', timeline); +Vue.component('mk-posts', posts); diff --git a/src/web/app/mobile/views/components/posts-post.vue b/src/web/app/mobile/views/components/posts-post.vue deleted file mode 100644 index b252a6e97d..0000000000 --- a/src/web/app/mobile/views/components/posts-post.vue +++ /dev/null @@ -1,412 +0,0 @@ - - - - - - diff --git a/src/web/app/mobile/views/components/posts.post.vue b/src/web/app/mobile/views/components/posts.post.vue new file mode 100644 index 0000000000..225a530b5d --- /dev/null +++ b/src/web/app/mobile/views/components/posts.post.vue @@ -0,0 +1,415 @@ + + + + + + diff --git a/src/web/app/mobile/views/components/posts.vue b/src/web/app/mobile/views/components/posts.vue index e3abd9ca61..01897eafde 100644 --- a/src/web/app/mobile/views/components/posts.vue +++ b/src/web/app/mobile/views/components/posts.vue @@ -2,7 +2,7 @@