27 lines
343 B
Vue
27 lines
343 B
Vue
<template>
|
|
<div class="rect-shape">
|
|
<v-text
|
|
:prop-value="element.propValue"
|
|
:element="element"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
element: {
|
|
type: Object
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.rect-shape {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: auto;
|
|
}
|
|
</style>
|