I having issue with displaying handsontable inside vuetify dialog.
Handsontable will display if I will not use dialog.
Here is snippent that will show this issue.
https://codesandbox.io/embed/still-night-g7owh?fontsize=14&hidenavigation=1&theme=dark
Handsontable not working inside vuetify dialog
I’ve fixed by setting height and width of table and it’s worked.
hotSettings: {
width: 500,
height: 300
},
Here is snippent for solution
https://codesandbox.io/s/reverent-golick-rpjtp?from-embed
Thank you for a prompt update. It will definitely help someone who’s also using the vuetify dialog.