码迷,mamicode.com
首页 > 其他好文 > 详细

Vue 中使用Promise

时间:2018-12-29 23:16:38      阅读:1139      评论:0      收藏:0      [点我收藏+]

标签:methods   message   mis   文件   src   err   arc   this   sheet   

<script src="https://unpkg.com/vue"></script>
<!-- 引入样式 -->
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<!-- 引入组件库 -->
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
<div id="app">
  <p>{{ message }}</p>
  <el-button @click=‘search‘>Click</el-button>
  <el-button @click=‘confirmTest‘>confirmTest</el-button>
</div>

new Vue({
  el: ‘#app‘,
  data: {
    message: ‘Hello Vue.js!‘
  },
  methods: {   
    search() {
        this.confirmTest().then((res) => {
        this.$message({
           message: ‘恭喜你,这是一条成功消息‘ + res,
              type: ‘success‘
          })
      }).catch((error) => {
          this.$message({
           message: ‘恭喜你,Enter confirm false‘ + error,
              type: ‘error‘
        })
      })        
    },
   confirmTest() {
    return new Promise((resolve, reject) => {
        this.$confirm(‘此操作将永久删除该文件, 是否继续?‘, ‘提示‘, {
          confirmButtonText: ‘确定‘,
          cancelButtonText: ‘取消‘,
          type: ‘warning‘
        }).then(() => {
          resolve(true)
        }).catch(() => {
          reject(false)
        });
    }) 
    }
  }
})

Vue 中使用Promise

标签:methods   message   mis   文件   src   err   arc   this   sheet   

原文地址:https://www.cnblogs.com/hahaxi/p/10197802.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!