mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
52 lines
1.0 KiB
Vue
52 lines
1.0 KiB
Vue
<script lang="ts" setup>
|
|
import type { ThemeImage } from '../../shared/index.js'
|
|
import { withBase } from 'vuepress/client'
|
|
|
|
defineProps<{
|
|
image: ThemeImage
|
|
alt?: string
|
|
}>()
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
inheritAttrs: false,
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<template v-if="image">
|
|
<img
|
|
v-if="typeof image === 'string' || 'src' in image"
|
|
class="vp-image"
|
|
v-bind="typeof image === 'string' ? $attrs : { ...image, ...$attrs }"
|
|
:src="withBase(typeof image === 'string' ? image : image.src)"
|
|
:alt="alt ?? (typeof image === 'string' ? '' : image.alt || '')"
|
|
>
|
|
<template v-else>
|
|
<VPImage
|
|
class="dark"
|
|
:image="image.dark"
|
|
:alt="image.alt"
|
|
v-bind="$attrs"
|
|
/>
|
|
<VPImage
|
|
class="light"
|
|
:image="image.light"
|
|
:alt="image.alt"
|
|
v-bind="$attrs"
|
|
/>
|
|
</template>
|
|
</template>
|
|
</template>
|
|
|
|
<style scoped>
|
|
html:not([data-theme="dark"]) .vp-image.dark {
|
|
display: none;
|
|
}
|
|
|
|
[data-theme="dark"] .vp-image.light {
|
|
display: none;
|
|
}
|
|
</style>
|