
vue
hello芳芳
前端工作
展开
-
el-autocomplete组件优化,可输入,可搜索
选择接收人带出银行信息,自己输入,则清空选择的id。-- 接收人 -->原创 2024-10-11 16:33:02 · 598 阅读 · 1 评论 -
filter,map,find,forEach,some,every的区别
methods: { // filter()与find()使用方法也相同。同样都接收三个参数。不同的地方在于返回值。filter()返回的是数组,数组内是所有满足条件的元素,而find()只返回第一个满足条件的元素。如果条件不满足,filter()返回的是一个空数组,而find()返回的是undefined // const myArr=[1,2,3,4,5,6]; // var v=myArr.find(value=>value>4); // console..原创 2021-03-26 09:47:10 · 358 阅读 · 0 评论 -
reduce,+=,_.sumBy累加求和
reduce() 方法接收一个函数作为累加器,数组中的每个值(从左到右)开始缩减,最终计算为一个值 handleSelectionChange(val){ this.selectList=val //方法二 //this.sum2=0 //arr.forEach(item=>{ //this.sum2+=item.dblamount //}) }, computed...原创 2021-03-25 14:10:46 · 408 阅读 · 0 评论 -
自定义指令directive
// 注册一个全局自定义指令 `v-focus` Vue.directive('focus', { // 当被绑定的元素插入到 DOM 中时…… inserted: function (el) { // 聚焦元素 el.focus() } }) 如果想注册局部指令,组件中也接受一个directives的选项: directives: { focus: { // 指令的定义 inserted: function (el) { el.foc...原创 2020-08-25 15:48:32 · 130 阅读 · 0 评论