Vue.js Error [ The "data" option should be a function that returns a per-instance value in component definitions ]

호밀빵 굽는 쿼카·2022년 2월 9일
0

개발

목록 보기
20/21

The "data" option should be a function that returns a per-instance value in component definitions
Vue.component에서 data 옵션을 잘못 선언했을때 발생하는 에러

▷ 에러가 발생한 코드

Vue.component('mine-it', {
	data : { 
		test : 'hi'
	},
	methods: {} 
  } 
});

▷ 정상 코드

Vue.component('mine-it', {
	data() { 
		return { 
			test : 'hi'
		} 
	},
	methods: {} 
  } 
});


참고 링크

profile
열심히 굽고 있어요🍞

0개의 댓글