คำถามติดแท็ก vue-composition-api

1
วิธีการทดสอบหน่วยด้วยความขบขันในองค์ประกอบ vue องค์ประกอบ API?
ฉันกำลังเขียนการทดสอบหน่วยที่มีเรื่องตลกสำหรับองค์ประกอบ API ของฉันใน vue.js. แต่ฉันไม่สามารถเข้าถึงฟังก์ชั่นในการตั้งค่า API ขององค์ประกอบ () 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 <span> {{ current }}</span> from <span> {{ steps }}</span> </div> </div> </template> <script …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.