v-confirm

v-confirm

Usage no npm install needed!

<script type="module">
  import vConfirm from 'https://cdn.skypack.dev/v-confirm';
</script>

README

v-confirm 基于 element-ui 的 Message.confirm

使用方式

<template>
  <span v-confirm:confirm="opts"></span>
</template>

export default{
  data(){
    return {
      opts:{
        title:"title",
        options:{
          //  element-ui的Message.confirm 中的常用配置 一致
        }
      }
    }
  }
  methods(){
    confirm(action, value){
      //  action: true时 确定
      //  action: false 取消
      // 当this.opts.options.showInput = true 时 value为input中的值
    }
  }
}