一、效果图
二、代码
<template>
<div>
<div style="width:20vw; margin:80px auto 0px auto">
<el-input v-model="name" :class="{'applyShake': shakeInput}"
placeholder="请输入内容"></el-input>
<div style="text-align:centen; margin-top:20px">
<el-button type="primary" @click="handleSumbit">确定</el-button>
</div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
name:'',
shakeInput:false,
}
},
methods:{
handleSumbit(){