The tag given directly by the background
<img src="images/ic_search.png">
Error report:
Add ./ and the path is correct
<img src="./images/ic_search.png">
How to configure vue to make the following path correct
<img src="images/ic_search.png">
If you don’t add ./, it will be an absolute path. The absolute path is relative to the root node, which is /. If you add it, it will be a relative path, relative to the current file.