[vue] 说下$attrs和$listeners的使用场景
生活随笔
收集整理的這篇文章主要介紹了
[vue] 说下$attrs和$listeners的使用场景
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
[vue] 說下attrs和attrs和attrs和listeners的使用場景
<template><el-button v-on="$listeners" v-bind="$attrs" :loading="loading" @click="myClick"><slot></slot></el-button> </template><script> export default {name: 'mButton',inheritAttrs: false,props: {debounce: {type: [Boolean, Number]}},data() {return {timer: 0,loading: false}},methods: {myClick() {if (!this.debounce) returnthis.loading = trueclearTimeout(this.timer)this.timer = setTimeout(() => {this.loading = false},typeof this.debounce === 'boolean' ? 500 : this.debounce)}} } </script>個人簡介
我是歌謠,歡迎和大家一起交流前后端知識。放棄很容易,
但堅持一定很酷。歡迎大家一起討論
主目錄
與歌謠一起通關前端面試題
總結
以上是生活随笔為你收集整理的[vue] 说下$attrs和$listeners的使用场景的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 单尺度retinex算法 matlab,
- 下一篇: Retinex算法介绍