[Vuejs]-How to get the max-innerHeight when browser is not 100% (size)

0👍

You maybe need to look for:

screen.height

The issue is I’m not sure you can use get the height of the start-bar (assuming it’s windows and on the bottom). Otherwise this will probably be a good starting point.

https://www.w3schools.com/js/js_window_screen.asp

0👍

Try this:

document.documentElement.clientHeight

Leave a comment