dataease-dm/frontend/src/components/canvas/custom-component/RectShape.vue

25 lines
384 B
Vue
Raw Normal View History

2021-03-25 19:16:32 +08:00
<template>
2021-06-21 12:39:24 +08:00
<div class="rect-shape">
<v-text :prop-value="element.propValue" :element="element" />
</div>
2021-03-25 19:16:32 +08:00
</template>
<script>
export default {
2021-06-21 12:39:24 +08:00
props: {
2021-06-24 14:31:01 +08:00
// eslint-disable-next-line vue/require-default-prop
2021-06-21 12:39:24 +08:00
element: {
type: Object
}
}
2021-03-25 19:16:32 +08:00
}
</script>
<style lang="scss" scoped>
.rect-shape {
width: 100%;
height: 100%;
overflow: auto;
}
2021-06-21 12:39:24 +08:00
</style>