JinZHouXiYiJi_DaPin2/resource/Basic/Image/Image.vue

19 lines
364 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<!-- 如果在编辑器模式下button 按钮不响应点击时间在父元素中进行拦截 -->
<div class="bg"></div>
</template>
<script setup lang="ts">
import type { CustomComponent } from 'open-data-v/base'
defineProps<{
component: CustomComponent
}>()
</script>
<style lang="less" scoped>
.bg {
@apply w-full h-full;
}
</style>