Skip to content
Snippets Groups Projects
Unverified Commit 6892e9fb authored by okayurisotto's avatar okayurisotto Committed by GitHub
Browse files

fix(frontend): URLに他のクエリがあるときにもZen UIが適用されるように (#10477)

parent abe73c99
No related branches found
No related tags found
No related merge requests found
......@@ -187,7 +187,7 @@ try {
} catch (err) {}
const app = createApp(
window.location.search === '?zen' ? defineAsyncComponent(() => import('@/ui/zen.vue')) :
new URLSearchParams(window.location.search).has('zen') ? defineAsyncComponent(() => import('@/ui/zen.vue')) :
!$i ? defineAsyncComponent(() => import('@/ui/visitor.vue')) :
ui === 'deck' ? defineAsyncComponent(() => import('@/ui/deck.vue')) :
ui === 'classic' ? defineAsyncComponent(() => import('@/ui/classic.vue')) :
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment