若有帮助,请采纳
<template>
<div>
<template>
<div>text:{{text}}</div>
<div><el-input v-model="text" :placeholder="tip" label="text"></el-input></div>
<div><el-button @click="clean()">清空</el-button></div>
</template>
</div>
</template>
<script>
export default {
data(){
return{
text:"",
tip:"请录入您的姓名",
}
},
methods:{
clean(){
this.text="";
},
}
}
</script>