我有一个带有可变切换开关的 src/components/UI/Sidebar.svelte 组件。
export let toggle = true;
我想<body>
在切换为真时添加一个类名“noscroll”以锁定主体滚动。我在 src/template.html 添加了这个
<style> .noscroll { position: fixed; overflow-y:scroll }; </style>
当侧边栏打开时,实现这样的 y 轴滚动锁定的最佳方法是什么?
www说
相关分类