[Vuejs]-Vue js routing 404 not found and assets

1👍

well it had nothing to do with i was missing a slash /
this works on level one url:

<img class="title" src="img/sad404.png" alt="404 not found" />

this is the correct way:

<img class="title" src="/img/sad404.png" alt="404 not found" />
👤nab

Leave a comment