You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-csc-ui/src/components/CscCustomLogo.vue

21 lines
286 B

<template>
<div>
<q-img
:src="logoData"
alt="Logo"
/>
</div>
</template>
<script>
export default {
name: 'CscCustomLogo',
props: {
logoData: {
type: String,
default: ''
}
}
}
</script>