index.js 247 B

12345678910111213141516
  1. var app = getApp()
  2. Component({
  3. properties: {
  4. isHidden: {
  5. type: Boolean,
  6. value: false
  7. }
  8. },
  9. data: {},
  10. attached: function () {},
  11. methods: {
  12. cancel: function () {
  13. this.triggerEvent('cancel', false)
  14. }
  15. }
  16. })