Files
FreeERP.Applet/miniprogram/pages/components/option-cell-plugin/option-cell-plugin.ts

27 lines
373 B
TypeScript
Raw Normal View History

2026-01-29 11:46:28 +08:00
Component({
options: { multipleSlots: true },
/**
*
*/
properties: {
title: null,
mode: null,
options: null,
value: null,
},
/**
*
*/
data: {},
/**
*
*/
methods: {
onOptionsChange(e: any) {
this.triggerEvent('change', e.detail);
},
},
});