index.js 219 B

12345678910111213141516
  1. Component({
  2. externalClasses: ['custom-class'],
  3. properties: {
  4. info: null,
  5. name: String,
  6. size: String,
  7. color: String
  8. },
  9. methods: {
  10. onClick() {
  11. this.triggerEvent('click');
  12. }
  13. }
  14. });