Vuetify Version: 2.2.12
Vue Version: 2.6.11
Browsers: Chrome 80.0.3987.100
OS: Windows 10
Create a stepper with no steps, add steps in mounted()
Should display first step
Doesn't display first step
Hi,
Same issue here, I'm trying to add dynamic async content to stepper :
https://codepen.io/ldn0/pen/vYOGgdj
I don't know if the component is made for 0 element in content, but one solution for me was to initialize the stepper with at least one element.
Another workaround is to add :key="!!items.length" for v-stepper
Adding this.updateView() in register() seems to do the job
Most helpful comment
Another workaround is to add
:key="!!items.length"forv-stepper