index.js 234 B

123456789
  1. import { ChecklistItemDefaultProps } from './props';
  2. Component({
  3. props: ChecklistItemDefaultProps,
  4. methods: {
  5. onChecklistItemClick: function () {
  6. this.props.onChange(this.props.item);
  7. },
  8. },
  9. });