1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| lib是核心代码 lib->core->classes 定义了很多方法 暂时关闭css js压缩 wathch 改成page* libs放第三方库 如何引入.string 1. npm i string-loader -D 2. 配置gulp 添加loaders { test:/\.string$/, loader:'string',
} script->新建tpls cd tpls 新建index.string scripts->新建utils ->commom.util.js var common={ render:function(str){ $('body').prepend('str') } }
artTemplate模板 var templaete=require("")
引入zepto.js 官网zeptojs.com ->放到libs 在scripts新建文件夹views 新建index.js 直接在index引用 在gulp配置exclude
@include flexbox() @include flex(1) @include flex-direction(column)
|