Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- typescript
- React.js
- 티스토리꾸미기
- 폰트적용하기
- 2022
- utilty type
- reactjs
- React Native
- NonNullable
- 제네릭
- 성능최적화
- 타입좁히기
- TSDoc
- const 단언문
- 공통컴포넌트
- JS console
- returnType
- click and drag
- 개발콘텐츠
- 리액트
- Chart.js
- 타입스크립트
- vue.js
- javascript
- react
- 커스텀
- 누구나 자료구조와 알고리즘
- 레이아웃쪼개기
- CSS
- 반복줄이기
Archives
- Today
- Total
몽땅뚝딱 개발자
[Vue.js/라이브러리] deepmerge 본문
◽ 설치하기
npm i deepmerge
◽ API
- merge(x, y, [options])
import deepmerge from 'deepmerge'
methods: {
test() {
const a = {
name: 'davinch',
}
const b = {
age: 132,
birth: 230908,
}
const output = deepmerge(a, b)
console.log(output) // { age: 132, birth: 230908, name: "davinch" }
};
}
- merge.all(arrayOfObjects, [options])
import deepmerge from 'deepmerge'
methods: {
test() {
const foobar = { foo: { bar: 3 } }
const foobaz = { foo: { baz: 4 } }
const bar = { bar: 'yay!' }
const output = deepmerge.all([foobar, foobaz, bar])
console.log(output) // { "foo": { "bar": 3, "baz": 4 }, "bar": "yay!" }
}
}
◽ API with. options
아래 링크에서 필요한 옵션을 찾아 추가하면 된다.
출처
개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.
'Development > Vue.js' 카테고리의 다른 글
[Vue.js] 빌트인 컴포넌트 - component와 is (0) | 2021.12.20 |
---|---|
[Vue.js] $nextTick (0) | 2021.12.19 |
[Vue.js] v-if와 v-show의 차이 (0) | 2021.12.09 |
[Vue.js] vue-cli3 설정파일 정리 (0) | 2021.12.07 |
[Vue.js] import 사용 시 경로에 별칭 사용하기 / @ (vue-cli 3~) (0) | 2021.12.07 |
Comments