12345678910111213141516171819202122 |
- Component({
- properties: {
- isGroup: true,
- callBack: Function,
- openDialog: Function
- },
- options: {
- addGlobalClass: true
- },
- data: {
- show: false,
- groupName: ''
- },
- methods: {
- addGroup() {
- this.triggerEvent("openDialog")
- },
- handleCallBack() {
- this.triggerEvent('callBack')
- }
- }
- })
|