Files
FreeERP.Applet/miniprogram/pages/components/search-input/search-input.ts

29 lines
444 B
TypeScript
Raw Normal View History

2026-01-21 17:05:30 +08:00
Component({
options: { multipleSlots: true },
/**
*
*/
2026-01-29 11:46:28 +08:00
properties: {
label: null,
placeholder: null,
2026-01-29 17:46:14 +08:00
value: null,
2026-01-29 11:46:28 +08:00
},
2026-01-21 17:05:30 +08:00
/**
*
*/
data: {},
/**
*
*/
methods: {
onChange(e: any) {
this.triggerEvent('change', { value: e.detail.value });
},
onClear() {
this.triggerEvent('change', { value: '' });
},
},
});