Post Form empty data
问题 for me NuxtJS application i've got multiple components thats come together in one form. Here the code: AppButton.vue <template> <button class="button" :class="btnStyle" :disabled="disabled" v-bind="$attrs" v-on="$listeners"><slot /></button> </template> <script> export default { name: 'AppButton', props: { btnStyle: { type: String, default: '' }, disabled: { type: String } } } </script> AppFormInput.vue <template> <div class="form-input"> <input v-bind="$attrs" :name="name" :value="value"