index.js 317 B

12345678910111213141516171819202122232425262728
  1. //Component Object
  2. Component({
  3. properties: {
  4. shops: { type: Array, value: [] },
  5. },
  6. data: {
  7. },
  8. methods: {
  9. },
  10. created: function(){
  11. },
  12. attached: function(){
  13. },
  14. ready: function(){
  15. },
  16. moved: function(){
  17. },
  18. detached: function(){
  19. },
  20. });