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.
14 lines
363 B
14 lines
363 B
<script lang="ts" setup>
|
|
const props = defineProps(['title']);
|
|
const { prefixCls } = useDesign('banner');
|
|
</script>
|
|
<template>
|
|
<div :class="[prefixCls, `${prefixCls}--white`]">
|
|
<img src="~/assets/images/commonBanner.png" alt="" />
|
|
<h2 class="title">{{ props.title }}</h2>
|
|
</div>
|
|
</template>
|
|
<style lang="scss" scoped>
|
|
@import 'banner';
|
|
</style>
|