index.vue 295 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view>
  3. <sell-container></sell-container>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. onLoad() {
  13. },
  14. onShow() {
  15. this.$updateCartBadge();
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style>
  22. /* Empty style as content is in the component */
  23. </style>