dataease-dm/frontend/src/components/canvas/custom-component/RectShape.vue
2021-06-24 14:31:01 +08:00

25 lines
384 B
Vue

<template>
<div class="rect-shape">
<v-text :prop-value="element.propValue" :element="element" />
</div>
</template>
<script>
export default {
props: {
// eslint-disable-next-line vue/require-default-prop
element: {
type: Object
}
}
}
</script>
<style lang="scss" scoped>
.rect-shape {
width: 100%;
height: 100%;
overflow: auto;
}
</style>