Skip to content
该翻译已同步到了 的版本,其对应的 commit hash 是 7c55128
同时该文档仍处于校对中,如有任何疑问或想参与校对工作,请移步这里了解更多。

常见问题

使用 Vitest 模拟日期和定时器

Vue 的调度器依赖于系统时间。在调用 vi.setSystemTime 之后再挂载组件,因为 Vue 依赖于其副作用。在调用 vi.setSystemTime 之前挂载组件可能会导致响应性中断。

请参见 vuejs/test-utils#2074

Vue warn: Failed setting prop

[Vue warn]: Failed setting prop "prefix" on <component-stub>: value foo is invalid.
TypeError: Cannot set property prefix of #<Element> which has only a getter

如果你使用 shallowMountstubs,并且使用了与 Element 共享的属性名称,将会显示此警告。

Element 共享的常见属性名称:

  • attributes
  • children
  • prefix

请参见:https://developer.mozilla.org/en-US/docs/Web/API/Element

可能的解决方案

  1. 使用 mount 而不是 shallowMount 来渲染而不使用桩
  2. 通过模拟 console.warn 来忽略警告
  3. 重命名 prop,以避免与 Element 属性冲突

Released under the MIT License.