forked from github/dataease
25 lines
384 B
Vue
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>
|