mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-25 14:20:21 +08:00
7 lines
181 B
TypeScript
7 lines
181 B
TypeScript
import smoothscroll from 'smoothscroll-polyfill';
|
|
|
|
/** 平滑滚动插件(兼容主流浏览器) */
|
|
export default function setupSmoothScroll(): void {
|
|
smoothscroll.polyfill();
|
|
}
|