aboutsummaryrefslogtreecommitdiff
path: root/resources/vue/components/StudipAssetImg.vue
blob: b60915b174875f114b06543900a9a78786f4a0f9 (plain)
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>