index.vue 235 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view>
  3. <view>
  4. 账号<input />
  5. </view>
  6. <view>
  7. 密码<input />
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. }
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style>
  22. </style>