2.0重构版本
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

events.js 266 B

2 years ago
1234567891011121314151617
  1. // 注册事件类
  2. window.$swEvent.setup("defaultEvent", {
  3. init(options) {
  4. },
  5. page$onInit(e) {
  6. console.log("onInit", e);
  7. },
  8. sysUser$onLoad(e) {
  9. console.log("onLoad", e);
  10. },
  11. userNickCode$onChange(e) {
  12. console.log("onChange", e);
  13. },
  14. });