uni-app-customEvent

版本: 1.0.0

快捷使用

  1. //main.js
  2. import event from './common/uni-app-customEvent/custom-event.js'
  3. const Event=new event();
  4. Vue.prototype.$event=Event;
  5. //index.vue
  6. this.$event.on('test',(title)=>{
  7. uni.showToast({
  8. title,
  9. })
  10. })
  11. //other.vue
  12. this.$event.notify('test','我传递给首页')

更新说明:

更新时间更新文件更新内容版本
2019 年 6 月 20 日 17:33:54custom-event.js首次新增自定义事件文件1.0.0