此处以项目中登录组件为例说明
- 新建组件
在 public/wap/first/zsff/components 目录下新建文件夹,例如新建 base-login 文件夹,然后在 base-login 文件夹下新建index.html,
index.css,index.js 文件。
index.html 写html模版内容
index.css 写style样式内容
index.js 写javascript内容
- 使用组件
使用组件遵循,先导入,再注册,最后使用顺序。
例如个人中心页面 application/wap/view/first/my/index.html。先使用require导入base-login组件,然后再components中注册。组件导入使用了require.js库。