diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-08-07 13:25:50 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-08-07 13:25:50 +0900 |
| commit | 7bd33ecc72c7cbb53a15f3a74f7548564c75fa6b (patch) | |
| tree | 19c0e4d1771baf02c3e7bb59574262f2f949cc8f /src/client/app/auth/script.ts | |
| parent | :pizza: (diff) | |
| download | sharkey-7bd33ecc72c7cbb53a15f3a74f7548564c75fa6b.tar.gz sharkey-7bd33ecc72c7cbb53a15f3a74f7548564c75fa6b.tar.bz2 sharkey-7bd33ecc72c7cbb53a15f3a74f7548564c75fa6b.zip | |
:v:
Diffstat (limited to 'src/client/app/auth/script.ts')
| -rw-r--r-- | src/client/app/auth/script.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/auth/script.ts b/src/client/app/auth/script.ts index bdfdf70be3..64ab6536db 100644 --- a/src/client/app/auth/script.ts +++ b/src/client/app/auth/script.ts @@ -8,14 +8,14 @@ import VueRouter from 'vue-router'; import './style.styl'; import init from '../init'; - import Index from './views/index.vue'; +import * as config from '../config'; /** * init */ init(launch => { - document.title = '%i18n:common.name% | %i18n:common.application-authorization%'; + document.title = `${config.name} | %i18n:common.application-authorization%`; // Init router const router = new VueRouter({ |