vue加载自定义的js文件
在做项目中需要自定义弹出框。就自己写了一个。效果图遇见的问题怎么加载自定义的js文件vue-插件这必须要看。然后就是自己写了。export default{install(Vue){var tpl;// 弹出框Vue.prototype.showAlter = (title,msg) =>{var alte
·
在做项目中需要自定义弹出框。就自己写了一个。
效果图
遇见的问题
怎么加载自定义的js文件
vue-插件这必须要看。然后就是自己写了。
export default{
install(Vue){
var tpl;
// 弹出框
Vue.prototype.showAlter = (title,msg) =>{
var alterTpl = Vue.extend({ // 1、创建构造器,定义好提示信息的模板
template: '<div id="bg">'
+ '<div class="jfalter">'
+ '<div class="jfalter-title" id="title">'+ title +'</div>'
+ '<div class="jfalter-msg" id="message">'+ msg +'</div>'
+ '<div class="jfalter-btn" id="sureBtn" v-on:click="hideAlter">确定</div>'
+ '</div></div>'
});
tpl = new alterTpl().$mount().$el; // 2、创建实例,挂载到文档以后的地方
document.body.appendChild(tpl);
}
Vue.mixin({
methods: {
hideAlter: function () {
document.body.removeChild(tpl);
}
}
})
}
}
使用
import jFAltre from '../../assets/jfAletr.js';
import Vue from 'vue';
Vue.use(jFAltre);
this.showAlter('提示','服务器请求失败');
更多推荐
已为社区贡献16条内容
所有评论(0)