Quasar - 垂直滚动条不能在超过 600 像素的宽度上工作

Quasar - Vertical scrollbar not working on more than 600px width

我正在使用 quasar 框架,但我不知道为什么 .vue 组件中的垂直滚动条会因 window 的宽度而失败。它适用于小于 600 像素的宽度。

home.vue代码:

    <template>
    <div class="layout-padding">
        <div class="user">
            <p>User Component</p>
            <router-view class="layout-view"></router-view>
        </div>  
        <div>
            <i>account_circle</i>
            <p class="bg-red-1">Quasar framework</p>
            <button class="secondary" @click="toggleFullscreen()">
            <i class="on-left">zoom_out_map</i>
            Toggle Fullscreen  
            </button>
        </div>

        <div>
            <p>-</p>
            <blockquote>
            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
            <small>Someone famous for <cite title="Quasar Framework">Quasar Framework</cite></small>
            </blockquote>
        </div>
    </div>
</template>

子路径需要一个根节点,所以我必须添加一个包含 "layout-padding" div

的 div
<template>
    <div> <!-- root node -->
        <div class="layout-padding">
            [Content...]
        </div>
    </div>
</template>

我从类星体文档中得到了解决方案: http://quasar-framework.org/components/layout-overview.html#Understanding-Layouts

如果上一个页面打开了 modal,当前页面有一些来自 modals 的参数(比如没有滚动页面)。所以解决方法是关闭上一页的modal(@click="modal.close()"),然后转到当前页面。