«vue-composition-api» 태그된 질문

1
Vue 구성 API 구성 요소에서 jest로 단위 테스트를 수행하는 방법은 무엇입니까?
vue.js의 컴포지션 API 구성 요소에 대해 jest로 단위 테스트를 작성하고 있습니다. 그러나 composition API의 setup ()에서 함수에 액세스 할 수 없습니다. Indicator.vue <template> <div class="d-flex flex-column justify-content-center align-content-center"> <ul class="indicator-menu d-flex justify-content-center"> <li v-for="step in steps" :key="step"> <a href="#" @click="updateValue(step)" :class="activeClass(step, current)"> </a> </li> </ul> <div class="indicator-caption d-flex justify-content-center"> step …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.