僅僅只是把el-upload的disabled設置成true 按鈕樣式是禁用 但是一點擊還是會出現彈窗 這時候需要把按鈕的slot="trigger" 設置成slot="tip" 或者像我一樣准備幾個不同的按鈕
<el-button :disabled="true" v-if="uploadVideoVisible" slot="tip" size="small" type="primary">上傳視頻</el-button>
<el-button v-if="uploadVideoVisible" slot="tip" size="small" type="danger" @click="deleteVideo">刪除原視頻</el-button>
<el-button v-if="!uploadVideoVisible" slot="trigger" size="small" type="primary">上傳視頻</el-button>
轉載https://blog.csdn.net/qq_37975021/article/details/112055658