<el-input v-model="input" @change='search' placeholder="請輸入內容"></el-input> <script> export default { data() { return { input: '', timeOutId: '' } }, methods: { search () { let that = this; clearTimeout(this.timeOutId); this.timeOutId = setTimeout(() => { that.doAjax(this.input); }, 100); }, doAjax (data){} } } </script>