💻 개발IT/Vue.js
2022. 9. 6.
[Vue] Property or method * is not defined on the instance but referenced during render.
속성을 정의하지 않았는데 화면에 렌더링되려고 할 때 아래와 같은 에러가 나타난다. Property or method * is not defined on the instance but referenced during render. 이 에러는 보통 정의하지 않은 경우나 오타 등 다양한 원인으로 나타나게 되는데, 나는 아래 "items"에서 에러가 났었다. import { reactive } from '@vue/composition-api' export default { setup(props) { const state = reactive({ items: null }), return { state } } } 이 경우에 리턴문을 아래와 같이 변경하든지, return { ...toRefs(state) } templ..