- backend: NestJS service with exercise/plan data - miniprogram: WeChat mini program client - exclude node_modules, dist, runtime data-store, local env
14 lines
277 B
JavaScript
14 lines
277 B
JavaScript
Component({
|
|
properties: {
|
|
title: { type: String, value: '' },
|
|
subtitle: { type: String, value: '' },
|
|
eyebrow: { type: String, value: '' },
|
|
action: { type: String, value: '' }
|
|
},
|
|
methods: {
|
|
onAction() {
|
|
this.triggerEvent('action');
|
|
}
|
|
}
|
|
});
|