[Vuejs]-How to make the path auto in the components in vue?

0👍

You need to use an absolute path to the resource. An absolute path begins with / and will always point to the same location regardless of the location of the webpage.

Assuming you have wwwroot/detail/icon.png in your filesystem and wwwroot is hosted at the root, then you can reference the image like this:

<img src="/detail/icon.png">

Leave a comment