register.vue 234 B

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