From 413fbb3d0c6040fe88730f5d4f65d1add3b1e59e Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 12 Jun 2018 19:03:57 +0900 Subject: モバイルでもハッシュタグを検索できるように MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/app/mobile/script.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/client/app/mobile/script.ts') diff --git a/src/client/app/mobile/script.ts b/src/client/app/mobile/script.ts index 300615ec58..d505b38dcc 100644 --- a/src/client/app/mobile/script.ts +++ b/src/client/app/mobile/script.ts @@ -42,6 +42,7 @@ import MkUserLists from './views/pages/user-lists.vue'; import MkUserList from './views/pages/user-list.vue'; import MkSettings from './views/pages/settings.vue'; import MkOthello from './views/pages/othello.vue'; +import MkTag from './views/pages/tag.vue'; Vue.use(MdCard); Vue.use(MdButton); @@ -88,6 +89,7 @@ init((launch) => { { path: '/i/drive/file/:file', component: MkDrive }, { path: '/selectdrive', component: MkSelectDrive }, { path: '/search', component: MkSearch }, + { path: '/tags/:tag', component: MkTag }, { path: '/othello', name: 'othello', component: MkOthello }, { path: '/othello/:game', component: MkOthello }, { path: '/@:user', component: MkUser }, -- cgit v1.2.3-freya