VUE2实现事件驱动弹窗示例(2)
main.js
import {Alert,Prompt,Confirm} from '../lib/components/prompt/prompt.js' Vue.prototype.Alert = function(text,okText) { return Alert(text,okText) }; Vue.prototype.Confirm = function(text,okText,cancelText) { return Confirm(text,okText,cancelText) }; Vue.prototype.Prompt = function(text,okText,inputType, defaultValue) { return Prompt(text,okText,inputType, defaultValue) }; component.vue: inputName() { this.Prompt('请输入名称','确认','text').then(res =>{ // do something use res }); },
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持黑区网络。