Would it be considered safe to add a URL in Vue through a computed property when the link is sourced from an external API service?
For instance:
<img :src="imgURL">
VueJS
computed: {
imgURL(){
return `https://exampleur.com${poster.4by4}`
}
}