摘要:
输入id即时提示该ID是否可用 阅读全文
摘要:
emmet输入法可以快速输入批量的html和css 用法为:标签名+tab ps:+enter也行但不推荐 标签名.xxx 输入一个class包含xxx的标签,如果标签名省略,则默认为div 如:在vscode中输入:p.c1.c2 效果: <p class="c1 c2"></p>标签名#xxx 阅读全文
摘要:
路由的引用 npm install vue-router 如果在一个模块化工程中使用它,必须要通过 Vue.use() 明确地安装路由功能:(先导入,再注册) import Vue from 'vue' import VueRouter from 'vue-router' Vue.use(VueRo 阅读全文
摘要:
1.父组件向子组件传值 2.子组件通过事件调用向父组件传值 3.组件案例:评论列表 阅读全文
摘要:
全选 歌单 歌手 专辑 --> ... 阅读全文
摘要:
语法节 arr.some(callback(element[, index[, array]])[, thisArg]) 参数节 返回值节 如果回调函数返回任何数组元素的truthy值,则返回true;否则为false。 https://developer.mozilla.org/zh-CN/doc 阅读全文
摘要:
//对象转数组 let arr1 = [] let obj1 = { dr: "dr001", ljy: "ljy002" } for (let prop in obj1) { arr1.push({ nam... 阅读全文
摘要:
ES6的思考,控制台结果如下图: 阅读全文
摘要:
阅读全文