image.png

    1. <template>
    2. <el-button type="text" @click="open2">点击打开 Message Box</el-button>
    3. </template>
    4. <script>
    5. export default {
    6. methods: {
    7. open2() {
    8. this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
    9. confirmButtonText: '确定',
    10. cancelButtonText: '取消',
    11. type: 'warning',
    12. center:true
    13. }).then(() => {
    14. this.$message({
    15. type: 'success',
    16. message: '删除成功!'
    17. });
    18. }).catch(() => {
    19. this.$message({
    20. type: 'info',
    21. message: '已取消删除'
    22. });
    23. });
    24. }
    25. }
    26. }
    27. </script>