antd-mini
Version:
antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。
11 lines (10 loc) • 340 B
JavaScript
import { Component, getValueFromProps, triggerEvent } from '../../_util/simply';
import { ChecklistItemDefaultProps } from './props';
Component({
props: ChecklistItemDefaultProps,
methods: {
onChecklistItemClick: function () {
triggerEvent(this, 'change', getValueFromProps(this, 'item'));
},
},
});