1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<template> <img :src="url" :width="width" alt=""> </template> <script> export default { name: 'studip-asset-img', props: ['width', 'file'], computed: { url: function () { return `${STUDIP.ASSETS_URL}images/${this.file}`; } } } </script>