feat: init fitness-coach (backend + miniprogram)
- backend: NestJS service with exercise/plan data - miniprogram: WeChat mini program client - exclude node_modules, dist, runtime data-store, local env
This commit is contained in:
13
miniprogram/components/section-header/index.js
Normal file
13
miniprogram/components/section-header/index.js
Normal file
@@ -0,0 +1,13 @@
|
||||
Component({
|
||||
properties: {
|
||||
title: { type: String, value: '' },
|
||||
subtitle: { type: String, value: '' },
|
||||
eyebrow: { type: String, value: '' },
|
||||
action: { type: String, value: '' }
|
||||
},
|
||||
methods: {
|
||||
onAction() {
|
||||
this.triggerEvent('action');
|
||||
}
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user