在vue项目里使用vue-layer报错
this.$layer.open({
type: 2, //0(信息框,默认)1(页面层)2(iframe层)3(加载层)4(tips层)
title: this.title,
content: 'baidu.com',
area: "auto",
offset: "auto",
icon: -1,
btn: "确定",
time: 0,
shade: true,
yes: "",
cancel: "",
tips: [0, {}], //支持上右下左四个方向,通过1-4进行方向设定,可以设定tips: [1, '#c00']
tipsMore: false, //是否允许多个tips
shadeClose: false
});
报错
类型错误,content应该是对象形式,我自己有一个项目用了vue-layer,以下仅供参考: