专题文章
时长:00:00更新时间:2020-11-27 19:35:00
本文通过Vue.extend创建组件构造器的方法写弹窗组件,供大家参考,具体内容如下:alert.js文件代码。import Vue from ';vue';// 创建组件构造器const alertHonor = Vue.extend(require(';./alert.vue';));var currentMsg = {callback:function(){}}export default function(options){ var alertComponent = new alertHonor({el: document.createElement(';p';)});alertComponent.title = options.title。
查看详情