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