常见问题
使用 Vitest 模拟日期和定时器
Vue 的调度器依赖于系统时间。在调用 vi.setSystemTime
之后再挂载组件,因为 Vue 依赖于其副作用。在调用 vi.setSystemTime
之前挂载组件可能会导致响应性中断。
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
如果你使用 shallowMount
或 stubs
,并且使用了与 Element
共享的属性名称,将会显示此警告。
与 Element
共享的常见属性名称:
attributes
children
prefix
请参见:https://developer.mozilla.org/en-US/docs/Web/API/Element
可能的解决方案
- 使用
mount
而不是shallowMount
来渲染而不使用桩 - 通过模拟
console.warn
来忽略警告 - 重命名 prop,以避免与
Element
属性冲突