mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
23 lines
640 B
PHP
23 lines
640 B
PHP
// ---------------------------------------
|
|
// 自定义后台扩展脚本
|
|
// 需要在加载 admin.js 后载入此文件
|
|
// ---------------------------------------
|
|
$(function () {
|
|
window.$body = $('body');
|
|
|
|
/*! 初始化异步加载的内容扩展动作 */
|
|
// $body.on('reInit', function (evt, $dom) {
|
|
// console.log('Event.reInit', $dom);
|
|
// });
|
|
|
|
/*! 追加 require 配置参数
|
|
/*! 加载的文件不能与主配置重复 */
|
|
// require.config({
|
|
// paths: {
|
|
// 'vue': ['plugs/vue/vue.min'],
|
|
// },
|
|
// shim: {
|
|
// 'vue': ['json']
|
|
// },
|
|
// });
|
|
}); |