Replies: 4 comments 9 replies
-
I should mention this only seems to be occurring when the file is hot-reloaded on save. I don't notice this error when using the app without editing files, but I imagine it still indicates some kind of problem. |
Beta Was this translation helpful? Give feedback.
-
@logaretm here you go. You know, at first I was thinking it was my fault and I just hadn't noticed this error this entire time, but now that I see the error takes over the entire codesandbox screen (of this old codesandbox from another issue I had) makes me think it was never there before and was recently introduced in some update (maybe not even vee related?). Otherwise I would have definitely noticed while coding on this sandbox (its a full page eslint error sometimes) Look at this part in mounted() {
console.log("uh oh");
}, Simply edit that console.log text to a different message and you will see an overload in console. |
Beta Was this translation helpful? Give feedback.
-
Did that sandbox help at all? I can narrow this down to seemingly the most trivial components and it still occurs 🤔 |
Beta Was this translation helpful? Give feedback.
-
I also get this will all HMR disabled |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have a custom file upload component which is complicated internally, but the public
modelValue
prop passed in is a very simple string UUID. When I emit the value back (after doing a whole bunch of image uploading, etc), I would emit something like...this.$emit('update:modelValue', 'dd2b3f4f-2b79-49d9-9db6-01eb5c0a7194')
I'm trying to use
useField
to simply validate the modelValue and nothing more. I'm currently getting recursive update stack exceeded errors, as I must be using it wrong.Do you know what I'm doing wrong here that could cause recursive updates?
Beta Was this translation helpful? Give feedback.
All reactions