JinZHouXiYiJi_DaPin2/resource/Basic/Image/Image.vue

19 lines
364 B
Vue
Raw Permalink Normal View History

2023-12-05 13:23:01 +08:00
<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>