Hartford specific customerAccount example

This commit is contained in:
2023-09-27 13:30:00 -05:00
parent 0b86bbb899
commit da1faf1067
3 changed files with 127 additions and 72 deletions

View File

@@ -0,0 +1,17 @@
<script setup>
// eslint-disable-next-line
const props = defineProps(["label", "value"]);
const rows = Math.ceil(props.value.length/18);
</script>
<template>
<div class="vertical-layout-cell">
<div class="GTTextLabel GTRTextLabel" :title="label" style="">{{ label }}</div>
</div>
<div class="vertical-layout-cell">
<textarea
:value="value" class="GTTextField read-only" :title="label" type="textarea" readonly="" :rows="rows"
maxlength="1024" />
</div>
</template>
<style></style>