[Vuejs]-Page breaks after reload VueJS + Nuxt.js

0👍

Actually, answer is kinda silly, because it was about styles. I mean, styles wasn’t import correctly. For main page I have this style:

body {
  margin: 0;
  background-color: #181919;
}

And for some reason this style also worked, for which I didn’t import file with this style. And after reload it crused, but now, just by importing it work fine :p

Leave a comment