84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
Vue test-utils 是否支援使用其金鑰在清單中尋找元件?如果沒有,是否有其他方法來尋找 vue 中以列表形式產生的元件?
Vue test-utils
您無法使用 findComponent() 方法中的鍵查詢元件。
findComponent()
但是您可以取得清單中的所有元件,然後像常規陣列一樣過濾它們。 只需提供正確的條件即可找到您想要的項目(使用其道具、屬性或其他內容)
const items = wrapper.findAllComponents(MyListItem) const foundItem = items.wrappers.find(listItem => list.props('id') === 'theIdILookFor')
您無法使用
findComponent()
方法中的鍵查詢元件。但是您可以取得清單中的所有元件,然後像常規陣列一樣過濾它們。 只需提供正確的條件即可找到您想要的項目(使用其道具、屬性或其他內容)