index.vue 252 B

12345678910111213141516171819202122232425
  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. methods: {
  15. }
  16. }
  17. </script>
  18. <style>
  19. /* Empty style as content is in the component */
  20. </style>