如何使用 vue-test-utils 获取功能组件的 props
How to get props of functional component with vue-test-utils
当我想使用函数式组件时,我不能像 wrapper.props() 那样访问道具,那么我该如何访问它们呢?
Error: [vue-test-utils]: wrapper.props() cannot be called on a mounted functional
component.
提问后立即找到答案:https://vue-test-utils.vuejs.org/api/wrapper/#attributes
因为 functional 本质上是一个 DOM 节点,所以我应该只获取它的属性(道具在这里只是属性)
当我想使用函数式组件时,我不能像 wrapper.props() 那样访问道具,那么我该如何访问它们呢?
Error: [vue-test-utils]: wrapper.props() cannot be called on a mounted functional
component.
提问后立即找到答案:https://vue-test-utils.vuejs.org/api/wrapper/#attributes
因为 functional 本质上是一个 DOM 节点,所以我应该只获取它的属性(道具在这里只是属性)