淘先锋技术网

首页 1 2 3 4 5 6 7

消息提示:

this.$message({
         message: '父目录不能为空',   
         type: 'warning'
})

type 取值 success(成功) / warning(警告) / info(消息) / error(错误) 

 

 气泡确认框:

        this.$confirm('删除后不可恢复,确定删除吗', {
          confirmButtonText: "确定",
          cancelButtonText: "取消",
          type: "warning"
        }).then(() => {

        }).catch(() => { });