<el-collapse accordion>
<el-collapse-item>
<template slot="title">
<div v-show="status">{{title}}</div>
<el-input v-show="!status" v-model="title" placeholder=""></el-input>
</template>
</el-collapse-item>
</el-collapse>
this is an editable title. Every time you click on input, the folding panel closes and opens. Is there any way to stop it
?