VeeValidate, Vuetify | TypeError: compute is not a function

VeeValidate, Vuetify | TypeError: compute is not a function

我在使用 VeeValidate 和 Vuetify 进行登录表单验证时遇到问题,不知道出了什么问题。如果重要的话,我还设置了 Vuex 并开始工作。我尝试使用许多 VeeValidate 和 Vuetify 示例表单,但总是以这个错误结束:

[Vue warn]: Error in render: "TypeError: compute is not a function"

found in

---> <ValidationProvider>

我的代码:https://pastebin.com/EC5cVriq

我删除了行

setInteractionMode('edger')

并像这样将交互模式作为 prop 传递给 ValidationObserver

<ValidationObserver
    ref="obs"
    v-slot="{ invalid, validated, handleSubmit }"
    mode="eager"
>

现在可以使用了。