1234567891011121314151617181920212223242526272829303132 |
- //Component Object
- Component({
- properties: {
- list:{
- type:Array,
- value:[]
- },
- },
- data: {
- },
- methods: {
- selectAward(){
- this.triggerEvent('selectAward')
- }
- },
- created: function(){
- },
- attached: function(){
- },
- ready: function(){
- },
- moved: function(){
- },
- detached: function(){
- },
- });
|