mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-21 09:12:14 +00:00
26 lines
486 B
Vue
26 lines
486 B
Vue
<template>
|
|
<img :src="source" alt="oasis cloud">
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Clouds',
|
|
props: [
|
|
'type'
|
|
],
|
|
computed: {
|
|
source() {
|
|
return this.type === 'colored'
|
|
? '/oasis/oasis-cloud-colored.svg'
|
|
: '/oasis/oasis-cloud-white.svg'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
img {
|
|
position: absolute;
|
|
}
|
|
</style>
|