@submit.native.prevent作用

<el-form :inline="true" :model="geCarManageData" class="demo-form-inline" v-if="!orderId"  @submit.native.prevent></el-form>

@submit.native.prevent
.native 表示对一个组件绑定系统原生事件
.prevent 表示提交以后不刷新页面

原文地址:https://www.cnblogs.com/antyhouse/p/10069603.html