123456789101112131415161718192021222324252627 |
- <template>
- <form @submit="formSubmit" @reset="formReset">
- <view class="uni-form-item uni-column">
- <view class="title">input</view>
- <input class="uni-input" name="input" placeholder="这是一个输入框" />
- </view>
- <view class="uni-btn-v">
- <button form-type="submit">Submit</button>
- <button type="default" form-type="reset">Reset</button>
- </view>
- </form>
- </template>
- <script>
- export default {
- name: 'mailboxLogin',
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- </style>
|