index.vue 244 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view>
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. name: "index",
  8. components: {},
  9. props: {},
  10. data() {
  11. return {}
  12. },
  13. watch: {},
  14. mounted() {
  15. },
  16. methods: {}
  17. }
  18. </script>
  19. <style scoped lang="scss">
  20. </style>