vue 表單驗證按鈕事件交由父組件觸發(fā),不直接再子組件上操作的方法
專業(yè)成都網(wǎng)站建設(shè)公司,做排名好的好網(wǎng)站,排在同行前面,為您帶來客戶和效益!成都創(chuàng)新互聯(lián)為您提供成都網(wǎng)站建設(shè),五站合一網(wǎng)站設(shè)計制作,服務(wù)好的網(wǎng)站設(shè)計公司,成都網(wǎng)站設(shè)計、網(wǎng)站建設(shè)負責任的成都網(wǎng)站制作公司!
子組件:
//內(nèi)容部分 <Form ref="formCustom" :model="formCustom" :rules="ruleCustom" :label-width="80"> <FormItem label="Age" prop="age"> <Input type="text" v-model="formCustom.age" number></Input> </FormItem> <FormItem> <Button type="primary" @click="handleSubmit('formCustom')">Submit</Button> <Button @click="handleReset('formCustom')" >Reset</Button> </FormItem> </Form>
子組件js部分
export default { data () { return { formCustom: { age: '' }, ruleCustom: { age: [ { required: true, message: '年齡不為空', trigger: 'blur' } ] } } }, methods: { handleSubmit (name) { this.$refs[name].validate((valid) => { if (valid) { const form = this.formCustom // 在這將事件傳遞出去 this.$emit('submit', form) } else { this.$Message.error('Fail!'); } }) }, handleReset (name) { this.$refs[name].resetFields(); } } }
父組件:
//子組件 <modalContent @submit="handleSubmit"/>
父組件js部分
import modalContent from '子組件位置(這里沒寫)' export default { components: { modalContent }, data () { return {} }, methods: { // 子組件的點擊觸發(fā)事件 handleSubmit(form) { this.$Message.success('Success!'); } } }
遇到某些xiagn要將按鈕寫在父組件上,但又需要調(diào)用子組件做驗證之類的時候可以借鑒一下,驗證請忽略,這里主要是按鈕的事件
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。
網(wǎng)站欄目:vue表單驗證按鈕事件交由父組件觸發(fā)的方法
網(wǎng)頁地址:http://muchs.cn/article32/gdoppc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供營銷型網(wǎng)站建設(shè)、品牌網(wǎng)站建設(shè)、靜態(tài)網(wǎng)站、網(wǎng)站收錄、服務(wù)器托管、企業(yè)建站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)