pwindy  
在完成任务的同时,还需要不断“复盘”,不论你多么的忙,都需要留下时间思考,可以思考哪些地方做的好,哪些地方我们可以改进,应该如何改进,注重总结才是王道

1.把layui对应的包放在static文件夹下,所以就直接放在了static下

 

2.在index.html中直接引入layui.js和layui.css

3.在vue组件中的created勾子函数中写入如下代码

  created(){
    const _this = this;
    layui.use(['layer'],function(){
      _this.layer = layui.layer,
      this.layer.msg('hello');
    })
  }

 

 

posted on 2020-06-15 22:30  pwindy  阅读(7202)  评论(0编辑  收藏  举报