Closed adavie1 closed 6 years ago
So it looks like this is related to #10094 that I just posted. I am getting the same RangeError
when using the <el-pagination>
with the sizes
select box.
Error in render: "RangeError: Maximum call stack size exceeded"
Found in: <ElInput><ElSelect><Sizes><ElPagination>
I just tried downgrading to 2.0.5
and then still get the error.
Thanks @ryantbrown . I've got the same issue for many components, I don't use el-pagination. At least I'm not alone in this and probably not crazy :-P
@adavie1 Ya its definitely an issue but downgrading to Vue 2.5.13
fixes the issue on my end. Vue 2.5.14
was released a few hours ago. I am willing to bet downgrading will fix yours as well.
@ryantbrown Perfect! I also had to downgrade vue-template-compiler
. That is a good enough workaround for now. Thanks!
I am also getting the same error, tried downgrade vue, vuex, element, no luck so far
Yup, getting this error using vue 2.5.14
and vue-template-compiler 2.5.14
. Have reverted vue and vue-template-compiler back down to 2.5.13
, and am not receiving these errors anymore.
So I have boiled down to this: https://jsfiddle.net/mmx38qxw/568/ . Might have something to do with v-bind:class
. Here's the issue: https://github.com/vuejs/vue/issues/7786 .
This affects everything that has an <el-input>
in it, as long as that <el-input>
has one of the four slots we provide. <el-cascader>
, <el-select>
, <el-pagination>
, <el-date-picker>
...
yes, vue.js rev 2.5.14 will cause stack exceeded issue, use vue.js rev 2.5.13 will fix this issue
Vue 2.5.15 fixes this.
升级vue到2.5.15也出现这个问题啊
error: el-date-picker Maximum call stack size exceeded fixed: update to the latest Vue version 2.5.21 and fixed it
Element UI version
2.2.1
OS/Browsers version
Ubuntu Linux 16.04
Vue version
2.5.14
Reproduction Link
https://jsfiddle.net/mmx38qxw/542/
Steps to reproduce
In the browser console I'm getting lots of these errors:
What is Expected?
I upgraded from ui-elements 2.0.5 to the current release 2.21 and these errors appeared.
The previous version I was using was ui-elements 2.0.5 and vue 2.4.2. No changes at all to the code. Previously no issues at all.
I've deleted down completely my node_modules directory and reinstalled. Same issue.
I've tried using both npm install and yarn.
package.json:
What is actually happening?
See above.
The code in the fiddle is just one example- The same error is happening on many other parts of the system.
The same app code base has been working fine until this recent upgrade.