12345678910111213141516171819202122232425262728 |
- //Component Object
- Component({
- properties: {
- shops: { type: Array, value: [] },
- },
- data: {
- },
- methods: {
-
- },
- created: function(){
- },
- attached: function(){
- },
- ready: function(){
- },
- moved: function(){
- },
- detached: function(){
- },
- });
|