Closed
Description
Vue version
3.5.8
Link to minimal reproduction
Steps to reproduce
In the SFC change the value of any of the dropdowns.
What is expected?
It should change the value of the dropdown.
What is actually happening?
It's crashing.
System Info
System:
OS: Windows 10 10.0.19045
CPU: (8) x64 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz
Memory: 10.56 GB / 31.71 GB
Binaries:
Node: 20.12.2 - C:\Program Files\nodejs\node.EXE
npm: 10.5.0 - C:\Program Files\nodejs\npm.CMD
Browsers:
Chrome: 128.0.6613.138
Edge: Chromium (128.0.2739.79)
Internet Explorer: 11.0.19041.4355
npmPackages:
vue: ^3.4.21 => 3.4.21
Any additional comments?
When compiling, the v-memo cache key comparison should use $options instead of the data parameter.
You can sidestep the issue by adding this
to the :key
property. Like :key=this.getId(data)
.