Make footer stay at the bottom of the page layout in css
When developing a webpage, the basic layout we need is a header, body, and footer. By default, the footer will not stay at the bottom if there is no content in the body. One of the simple ways to make the footer stick to the bottom is using a CSS flexbox.
1 year ago
Make Vuex store data reactive in VueJs
Changing the Vuex store's data directly won't be reactive and the components consuming those won't update. There are two ways to make the store's data reactive.
1 year ago