fn_b/resources/js/app 2.js
2026-02-12 12:36:53 +08:00

16 lines
419 B
JavaScript
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import './bootstrap';
window.jQuery = window.$ = window.jQuery || window.$;
import { fInitArticleLoader } from './modules/articles.js';
$(function() {
    console.log('[App] jQuery 已就绪,准备初始化业务逻辑...');
    
    // 执行文章加载器的初始化
    fInitArticleLoader();
    
    // 如果后续还有其他模块,也在这里按序执行
    // fInitOtherModule();
});