button.js 311 B

1234567891011121314151617
  1. Component({
  2. externalClasses: ['button-style'],
  3. properties: {
  4. title: String,
  5. size: String,
  6. block: {
  7. type: Boolean,
  8. default: false,
  9. }
  10. },
  11. data: {},
  12. methods: {
  13. click(e) {
  14. this.triggerEvent("click");
  15. }
  16. }
  17. });