10 2020 档案

摘要:npm install -g @vue/cli 创建项目 vue create freemall 阅读全文
posted @ 2020-10-18 16:25 abcdefgab 阅读(84) 评论(0) 推荐(0)
摘要:1.生成项目工程描述文件 npm init 2.安装webpack开发依赖 (本地安装):npm install -D 3.(webpack4.0版本以上安装webpack cli) npm install webpack-cli -D 4.本地安装下webpack不能直接使用,需要指定路径执行。使 阅读全文
posted @ 2020-10-18 15:25 abcdefgab 阅读(73) 评论(0) 推荐(0)
摘要:第一季: 1.课程概要 插件(Vetur代码高亮、Vue 2 Snippets代码提示、Live Server即时显示、open in browser) 2.Vue框架的介绍 阅读全文
posted @ 2020-10-10 23:58 abcdefgab 阅读(85) 评论(0) 推荐(0)
摘要:解决方法:去掉两个大括号 阅读全文
posted @ 2020-10-06 17:05 abcdefgab 阅读(196) 评论(0) 推荐(0)
摘要:双击获取index: $("#infoList_playlist").on("dbclick","tr",function(){ alert(this.dataset.index); }) 阅读全文
posted @ 2020-10-05 16:14 abcdefgab 阅读(151) 评论(0) 推荐(0)
摘要:.page_palybar>.playbar_btns>.btn { /* float: left; */ display: inline-block; width: 40px; height: 40px; background-color: #C52F30; border-radius: 50%; 阅读全文
posted @ 2020-10-03 22:25 abcdefgab 阅读(119) 评论(0) 推荐(0)
摘要:1.设置父元素如body的宽高,并设置overflow:hidden 2.设置上一级父元素的box-size:border-box; 阅读全文
posted @ 2020-10-03 21:08 abcdefgab 阅读(138) 评论(0) 推荐(0)
摘要:超出预想的高度时,要考虑是否用box-size: content-box:默认值,真实高度=设置值+边框和内边距的值 border-box:真实高度=设置值 阅读全文
posted @ 2020-10-03 10:10 abcdefgab 阅读(378) 评论(0) 推荐(0)