摘要: 1 arr.push() 从后面添加元素,返回值为添加完后的数组的长度 let arr = [1,2,3,4,5] console.log(arr.push(5)) // 6 console.log(arr) // [1,2,3,4,5,5] 2 arr.pop() 从后面删除元素,只能是一个,返回 阅读全文
posted @ 2020-05-06 16:47 shine_lovely 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 在开发中,我们经常会将一些常用的代码块、功能块进行封装,为的是更好的复用。那么,被抽离出来独立完成功能,通过API或配置项和其他部分交互,便形成了插件。 函数库 Lodash https://github.com/lodash/lodash Underscore https://underscore 阅读全文
posted @ 2020-05-06 15:43 shine_lovely 阅读(3864) 评论(1) 推荐(2) 编辑
摘要: 编程式导航 // 命名的路由 params 传参 取数据:this.$route.params.type this.$router.push({ name: 'user', params: { userId: '123' }}) // 路径传参,带查询参数,变成 /register?plan=pri 阅读全文
posted @ 2020-05-06 15:42 shine_lovely 阅读(169) 评论(0) 推荐(0) 编辑