vuejs v-html image tag not resolving src

前端 未结 2 1879
梦谈多话
梦谈多话 2021-01-28 18:23

I have a vue page which uses v-html to place an html content inside a

as follows:

2条回答
  •  无人及你
    2021-01-28 18:44

    The issue is in the src url you are using, the src url root is the public directory.

    For example, if you have all your images in public->images directory then your code will look like this:

    this.noDataMessage = "";
    

提交回复
热议问题