dashboard/shell/components/formatter/ImageName.vue

24 lines
288 B
Vue

<script>
export default {
props:
{
value: {
type: String,
default: ''
}
}
};
</script>
<template>
<span class="formatter-image">
{{ value }}
</span>
</template>
<style scoped>
.formatter-image {
word-break: break-all;
}
</style>