vue專案中如何使用this.$confirm
首先在element-ui中的el-table下的el-table-column中引入插槽(相當於佔位符)
<template slot-scope="scope">
<el-button size="mini" @click="handleEdit(scope.$index, scope.row)"
>編輯</el-button
>
<el-button
size="mini"
type="danger"
@click="handleDelete(scope.$index, scope.row)"
>刪除</el-button
>
</template>
handleDelete(index, item) {
this.$confirm("你確定要刪除嗎,請三思,後果自負", {
confirmButtonText: "確定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
console.log("確定了,要刪除");
})
.catch(() => {
console.log("放棄了");
});
},
此時,需要在main.js中註冊元件
import {MessageBox} from 'element-ui';
// Vue.use(MessageBox);//與其他引用不同的是,這裡“不能”加Vue.use(MessageBox),不然會出現問題,達不到想要的效果
Vue.prototype.$confirm = MessageBox.confirm;
相關文章
- 如何在vue專案中優雅的使用SVGVueSVG
- 如何在 Vue 專案中使用 echartsVueEcharts
- 如何在現有的Vue專案中嵌入 Blazor專案?VueBlazor
- vue專案中如何載入markdownVue
- 4-6.vue-router的this.$router和this.$routeVue
- bing Map 在vue專案中的使用Vue
- 如何去除vue專案中的 # — vue路由的History模式Vue路由模式
- Vue中級指南-01 如何在Vue專案中匯出ExcelVueExcel
- 如何在Vue專案中使用阿里的IconfontVue阿里
- vue 中this.$emit()的返回值是什麼?VueMIT
- vue專案中如何全域性引入scss/sass檔案VueCSS
- 在vue專案中優雅的使用SvgVueSVG
- 使用vue-cli搭建VUE專案Vue
- VUE:教你如何執行vue專案Vue
- 專案中如何配合VScode使用EslintVSCodeEsLint
- 在專案中如何直接使用hystrix?
- Vue2.5筆記:如何在專案中使用和配置VueVue筆記
- vue專案中使用svgVueSVG
- 使用 Docker 部署 vue 專案DockerVue
- vue專案中使用eslintVueEsLint
- 使用webpack搭建vue專案WebVue
- 使用 pnpm 建立 vue 專案NPMVue
- 如何執行vue專案Vue
- 說說如何在Vue專案中應用TypeScript?VueTypeScript
- Vue 專案中接入sentryVue
- 【 Vue 】 Vue 使用腳手架建立專案Vue
- 在vue專案中使用elementUIVueUI
- Vue開源專案使用探索Vue
- Vue專案使用pdf.jsVueJS
- vue專案使用element元件庫Vue元件
- 如何搭建一個vue專案Vue
- vue 專案中ivew按需引入Vue
- Vue專案中應用TypeScriptVueTypeScript
- 純html如何識別.vue檔案並搭建vue專案HTMLVue
- vue專案中獲取外部js,並使用其中方法VueJS
- vue專案如何全域性引入scss檔案VueCSS
- 使用腳手架搭建VUE專案Vue
- vue.js 使用NPM建立專案Vue.jsNPM