mailbox.vue 526 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <form @submit="formSubmit" @reset="formReset">
  3. <view class="uni-form-item uni-column">
  4. <view class="title">input</view>
  5. <input class="uni-input" name="input" placeholder="这是一个输入框" />
  6. </view>
  7. <view class="uni-btn-v">
  8. <button form-type="submit">Submit</button>
  9. <button type="default" form-type="reset">Reset</button>
  10. </view>
  11. </form>
  12. </template>
  13. <script>
  14. export default {
  15. name: 'mailboxLogin',
  16. data() {
  17. return {
  18. };
  19. }
  20. }
  21. </script>
  22. <style lang="scss" scoped>
  23. </style>