summaryrefslogtreecommitdiff
path: root/src/client/init.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-09-17 22:39:15 +0900
committerGitHub <noreply@github.com>2021-09-17 22:39:15 +0900
commit361069314ffaa61a81b2189c2eec000a3d1d9c35 (patch)
tree195271c503ef67b245503ca6fe945bd97a8ea83b /src/client/init.ts
parentpopupで設定ページを表示すると、アカウントの削除ページ... (diff)
downloadsharkey-361069314ffaa61a81b2189c2eec000a3d1d9c35.tar.gz
sharkey-361069314ffaa61a81b2189c2eec000a3d1d9c35.tar.bz2
sharkey-361069314ffaa61a81b2189c2eec000a3d1d9c35.zip
Refine UI (#7806)
* wip * wip * wip * wip * wip * wip * wip * wip * Update default.vue * wip
Diffstat (limited to 'src/client/init.ts')
-rw-r--r--src/client/init.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/init.ts b/src/client/init.ts
index 4d2170e03f..aa9cd817c4 100644
--- a/src/client/init.ts
+++ b/src/client/init.ts
@@ -15,7 +15,7 @@ if (localStorage.getItem('accounts') != null) {
import * as Sentry from '@sentry/browser';
import { Integrations } from '@sentry/tracing';
-import { computed, createApp, watch, markRaw } from 'vue';
+import { computed, createApp, watch, markRaw, version as vueVersion } from 'vue';
import compareVersions from 'compare-versions';
import widgets from '@client/widgets';
@@ -47,6 +47,8 @@ window.onunhandledrejection = null;
if (_DEV_) {
console.warn('Development mode!!!');
+ console.info(`vue ${vueVersion}`);
+
(window as any).$i = $i;
(window as any).$store = defaultStore;