在vue中怎么使用layui
时间:2022-02-11 17:43
在vue中使用layui的方法:首先把layui对应的包放在static文件夹下;然后在【index.html】中直接引入【layui.js】和【layui.css】;最后在vue组件中的created勾子函数中写入相关代码。 本教程操作环境:windows7系统、Vue2.9.6&&layui2.5.4版,该方法适用于所有品牌电脑。 【相关文章推荐:vue.js】 在vue中使用layui的方法: 1、把layui对应的包放在static文件夹下,所以就直接放在了static下 2、在index.html中直接引入layui.js和layui.css 3、在vue组件中的created勾子函数中写入如下代码 相关免费学习推荐:javascript学习教程 以上就是在vue中怎么使用layui的详细内容,更多请关注gxlsystem.com其它相关文章! created(){
const _this = this;
layui.use(['layer'],function(){
_this.layer = layui.layer,
this.layer.msg('hello');
})
}