index2.vue 250 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view>
  3. <index></index>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. components: {},
  9. props: {},
  10. data() {
  11. return {
  12. }
  13. },
  14. onLoad(options) {
  15. },
  16. onShow() {
  17. },
  18. methods: {
  19. },
  20. }
  21. </script>
  22. <style>
  23. </style>