diff --git a/components/RootLayout.vue b/components/RootLayout.vue index 1900ed28..03dcb9b7 100644 --- a/components/RootLayout.vue +++ b/components/RootLayout.vue @@ -31,17 +31,10 @@ const uiModule = namespace('ui') @Component({ head() { - const isDesktopViewMode: boolean = - this.$store.getters['ui/isDesktopViewMode'] - const contentWidth = isDesktopViewMode - ? 'width=1024, initial-scale=1, minimum-scale=1' - : 'width=device-width' - return { htmlAttrs: { class: this.$props.bgClass, }, - meta: [{ hid: 'viewport', name: 'viewport', content: contentWidth }], } }, }) diff --git a/layouts/default.vue b/layouts/default.vue index d4c1a45d..9a2ff982 100644 --- a/layouts/default.vue +++ b/layouts/default.vue @@ -29,14 +29,6 @@ -