Vuev3 composition API 의 setup 에서 destruct props 를 사용할 수 없습니다.

2580 단어 Vue.jstech
네, 제목이 이렇습니다.
setup(props: { item: Item }) {
  const hello = computed(() => `Hello, ` + props.item.name);
아래에 이렇게 쓰면 itemreactive가 아니기 때문에 기대했던 대로 움직이지 않는다.
setup({ item }: { item: Item }) {
  const name = computed(() => `Hello, ` + item.name);
GiitHub의 issue에 대해 이 근처에서 같은 질문을 하는 사람이 있습니다.
https://github.com/vuejs/composition-api/issues/264

좋은 웹페이지 즐겨찾기