YeeUI 配置说明
在YeeUI 开始渲染之前,YeeUI会先加载配置文件 yeeui/yee.config.js 文件,主要用于指定各个模块的文件依赖关系,YeeUI会根据依赖关系加载正确的js文件。
配置文件的格式如下:
Yee.setConfig({
version: '1.0.1',
//预加载,提前加载的
preload: {
'依赖名称': '文件地址'
},
//依赖项,第三方文件,在代码中可以使用Yee.use('依赖名称') 载入文件。
depends: {
'依赖名称':'文件地址',
},
});
preload:
预加载模块
主要的配置有两个 第一个是预加载文件,是指在使用框架之前,需要最先加载那些文件。
depends:
模块的依赖文件
在文件名定义的时候如果有依赖css样式 可以使用 css!前缀,如: css!css/mycss.css
使用参考例子如:
Yee.setConfig({
version: '1.0.1',
//预加载,提前加载的
preload: {
'layer': window.layer ? '' : (Yee.isMobile ? 'layer/mobile/layer.js' : 'layer/layer.js')
},
//依赖项,可以用 Yee.use() 引入
depends: {
//定义依赖路径
'json': window.JSON ? '' : 'third/json3.min.js',
'jquery-cookie': 'third/jquery.cookie.js',
'jquery-mousewheel': 'third/jquery.mousewheel.min.js',
'base64': window.atob ? '' : 'third/base64.min.js',
'xheditor': 'xheditor/xheditor-1.2.2.min.js',
'xheditor-lang': 'xheditor/xheditor_lang/zh-cn.js',
'tinymce': 'tinymce/tinymce.min.js',
'tinymce-jquery': 'tinymce/jquery.tinymce.min.js',
'tinymce-lang': 'tinymce/langs/zh_CN.js',
'vue': window.Vue ? '' : 'third/vue.min.js',
},
});
对于YeeUI 已经内置了一些模块,但是也允许我们自定义自己的模块。
自定义模块 放在 yeeui/module 文件夹中,以 yee-模块名称.js 命名。