VUE Confirm控件是一款易于使用的彈窗插件,它可以方便地實現像確認或取消這樣的操作。
屬性 :
el : null // dom元素 text : "" // 顯示的文本 onOK : null // 點擊了確定按鈕的回調函數 onCancel : null // 點擊了取消按鈕的回調函數
使用方法 :
// 導入控件 import confirm from '../components/confirm/confirm.vue' // 注冊組件 components: { confirm } // 彈出確認框 this.$confirm({ text: '確定要提交嗎?', onOK: () =>{ // 點擊了確定按鈕 console.log('click OK') }, onCancel: () =>{ // 點擊了取消按鈕 console.log('click Cancel') } })
我們可以通過VUE Confirm控件輕松地實現彈出框的提示,在實際項目中使用起來非常方便。