0.1.3 • Published 4 years ago

vue-confirm-conponent v0.1.3

Weekly downloads
5
License
MIT
Repository
github
Last release
4 years ago

使用方法

npm install vue-confirm-component --save

main.js

import 'vue-confirm-component/lib/vue-confirm-component.css'
import vueConfirm from 'vue-confirm-component'
Vue.use(vueConfirm)

vue页面中使用

 <vue-confirm :show="showConfirm" :content="content" @confirm="confirm" :showCancel="true" confirmText="知道了"></vue-confirm>

API

名称类型默认值
showBooleanfalse
content显示内容‘内容’
showCancel是否显示 取消按钮false
cancelText取消按钮文案取消
confirmText确定按钮文案确定

方法

方法名返回值
confirm{confirm: false} true:确定 false:取消