Files
kuboard-press/.vuepress/components/FancyImage.vue
huanqing.shao 3a2fef22f6 SlideLeft2Right
2019-11-23 12:04:10 +08:00

29 lines
771 B
Vue

<template>
<component :is="type" :src="src" :alt="alt" :title="title" :description="description"></component>
</template>
<script>
import Diamond from './fancy-images/Diamond'
import Cross from './fancy-images/Cross'
import Rectangle from './fancy-images/Rectangle'
import Rolling from './fancy-images/Rolling'
import SlideLeft2Right from './fancy-images/SlideLeft2Right'
export default {
props: {
src: { type: String, required: true },
alt: { type: String, required: true },
title: { type: String, required: true },
description: { type: String, required: true },
type: { type: String, required: false, default: 'Diamond' }
},
components: {
Diamond, Cross, Rectangle, Rolling, SlideLeft2Right
}
}
</script>
<style scoped>
</style>