From 52c2d7c794c9580f7d2ba4cd5b8aee76e541f8f6 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 22 Feb 2018 02:37:04 +0900 Subject: wip --- src/web/app/mobile/views/components/index.ts | 5 + src/web/app/mobile/views/components/post-form.vue | 22 ++- src/web/app/mobile/views/components/ui-header.vue | 168 ------------------- src/web/app/mobile/views/components/ui-nav.vue | 196 ---------------------- src/web/app/mobile/views/components/ui.header.vue | 169 +++++++++++++++++++ src/web/app/mobile/views/components/ui.nav.vue | 196 ++++++++++++++++++++++ src/web/app/mobile/views/components/ui.vue | 16 +- src/web/app/mobile/views/pages/drive.vue | 3 +- 8 files changed, 397 insertions(+), 378 deletions(-) create mode 100644 src/web/app/mobile/views/components/index.ts delete mode 100644 src/web/app/mobile/views/components/ui-header.vue delete mode 100644 src/web/app/mobile/views/components/ui-nav.vue create mode 100644 src/web/app/mobile/views/components/ui.header.vue create mode 100644 src/web/app/mobile/views/components/ui.nav.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 new file mode 100644 index 0000000000..f628dee883 --- /dev/null +++ b/src/web/app/mobile/views/components/index.ts @@ -0,0 +1,5 @@ +import Vue from 'vue'; + +import ui from './ui.vue'; + +Vue.component('mk-ui', ui); diff --git a/src/web/app/mobile/views/components/post-form.vue b/src/web/app/mobile/views/components/post-form.vue index 6c41a73b51..bba6692295 100644 --- a/src/web/app/mobile/views/components/post-form.vue +++ b/src/web/app/mobile/views/components/post-form.vue @@ -3,27 +3,27 @@
- { 1000 - refs.text.value.length } + {{ 1000 - refs.text.value.length }}
- - -
+ + +
    -
  • -
    +
  • +
- + - +
@@ -31,9 +31,10 @@ - - diff --git a/src/web/app/mobile/views/components/ui-nav.vue b/src/web/app/mobile/views/components/ui-nav.vue deleted file mode 100644 index 1767e62242..0000000000 --- a/src/web/app/mobile/views/components/ui-nav.vue +++ /dev/null @@ -1,196 +0,0 @@ - - - - - diff --git a/src/web/app/mobile/views/components/ui.header.vue b/src/web/app/mobile/views/components/ui.header.vue new file mode 100644 index 0000000000..3479bd90b3 --- /dev/null +++ b/src/web/app/mobile/views/components/ui.header.vue @@ -0,0 +1,169 @@ + + + + + diff --git a/src/web/app/mobile/views/components/ui.nav.vue b/src/web/app/mobile/views/components/ui.nav.vue new file mode 100644 index 0000000000..020be1f3db --- /dev/null +++ b/src/web/app/mobile/views/components/ui.nav.vue @@ -0,0 +1,196 @@ + + + + + diff --git a/src/web/app/mobile/views/components/ui.vue b/src/web/app/mobile/views/components/ui.vue index a07c9ed5a2..b936971ad3 100644 --- a/src/web/app/mobile/views/components/ui.vue +++ b/src/web/app/mobile/views/components/ui.vue @@ -1,9 +1,10 @@