LinYeFangHuo/src/packages/components/Units/Titles/TopTitles/index.vue

35 lines
657 B
Vue

<template>
<div class="go-title-09">
<img :width="w" :height="h" src="@/assets/images/chart/units/toptitle.png" />
</div>
</template>
<script setup lang="ts">
import { PropType, toRefs } from 'vue'
import { CreateComponentType } from '@/packages/index.d'
const props = defineProps({
chartConfig: {
type: Object as PropType<CreateComponentType>,
required: true
}
})
const { w, h } = toRefs(props.chartConfig.attr)
</script>
<style lang="scss" scoped>
@include go('title-09') {
position: relative;
display: flex;
justify-content: center;
align-items: center;
svg {
position: absolute;
z-index: -1;
}
}
</style>