vue 키보드 이벤트 클릭 이벤트 가native 작업

다음과 같습니다.

<el-card class="box-card animated flipInY">
   <el-form :model="ruleForm2" :label-position="labelPosition" status-icon :rules="rules2" ref="ruleForm2" label-width="50px" class="demo-ruleForm">
    <h3 class="login_title"> </h3>
    <el-form-item label=" " prop="account">
     <el-input type="text" v-model="ruleForm2.account" @keyup.native.enter="handleSubmit2" auto-complete="off" placeholder=" "></el-input>
    </el-form-item>
    <el-form-item label=" " prop="checkPass">
     <el-input type="password" v-model="ruleForm2.checkPass" @keyup.native.enter="handleSubmit2" auto-complete="off" placeholder=" "></el-input>
    </el-form-item>
    <el-checkbox label=" " v-model="checked" class="remember"> </el-checkbox>
    <el-form-item >
     <el-button type="primary" class="login_btn" @click.native.prevent="handleSubmit2" :loading="logining"> </el-button>
    </el-form-item>
   </el-form>
  </el-card>
위 코드와 같이 백그라운드 관리 시스템의 로그인.계정과 비밀번호에 키보드 enter 이벤트를 추가했습니다. 감청할 때 추가해야 합니다.native를 정확하게 사용할 수 있습니다.아래 단추의 클릭 이벤트도 추가해야 합니다.native를 사용해야 정상적으로 사용할 수 있습니다.
공식 문서 참조:
구성 요소의 루트 요소에 원본 사건을 직접 감청하고 싶은 적이 많을 수도 있습니다.이때, 너는 v-on을 사용할 수 있다.네이티브 수식자:

때로는 유용하지만, 과 같은 매우 특정한 원소를 감청하려고 시도할 때, 이것은 결코 좋은 생각이 아니다.예를 들어 상기 구성 요소는 다음과 같은 재구성을 했을 수 있기 때문에 루트 요소는 사실상

좋은 웹페이지 즐겨찾기