mirror of
https://gitee.com/SuperManito/LinuxMirrors
synced 2025-11-04 00:10:27 +08:00
16 lines
420 B
JavaScript
16 lines
420 B
JavaScript
// 使用 mkdocs-material 与第三方 JavaScript 库集成的方法
|
|
document$.subscribe(function () {
|
|
// 重新初始化组件
|
|
ComponentSystem.reinitializeAll()
|
|
// 延迟初始化以确保DOM完全渲染
|
|
setTimeout(() => {
|
|
ComponentSystem.initAll()
|
|
}, 300)
|
|
})
|
|
|
|
// 首次加载事件
|
|
window.addEventListener('load', function () {
|
|
// 初始化所有组件
|
|
ComponentSystem.initAll()
|
|
})
|