오식랜드
[vue, nuxt] 형제 컴포넌트간 데이터 전송 본문
반응형
보내는 컴포넌트
this.$nuxt.$emit('데이터통신 이름', 보낼데이터)
//예시
this.$nuxt.$emit('passData', this.data)
받는 컴포넌트
this.$nuxt.$on('데이터통신 이름', 받아서사용할데이터이름 =>{
console.log(data)
})
// 예시
this.$nuxt.$on('passData', info =>{
console.log(info)
})
반응형
'dev-log > vue·nuxt.js' 카테고리의 다른 글
[vue / nuxt] nuxt에서 cookie set, get하기 (0) | 2022.06.10 |
---|---|
[vue] vue awesome swiper 현재 index값 찾기 (0) | 2022.05.19 |
[nuxt/scss] scss 변수 저장 파일을 전역에 import하기 (0) | 2022.05.12 |
[vue, nuxt] filter를 이용해 4자리 숫자 중 빈 자릿수를 0으로 채우기 (0) | 2022.05.10 |
vue, nuxt url params 지우기 (0) | 2022.05.03 |
Comments