This commit is contained in:
2020-04-07 18:20:37 +00:00
parent d004eb0ae4
commit e6c3cdddca
3 changed files with 24 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
<template>
<v-row justify="center">
<v-col cols="6">
<div class="display-2">Report viewer control</div>
<div>ReportId: {{ reportId }}</div>
<div>AyaType: {{ ayaType }}</div>
</v-col>
</v-row>
</template>
<script>
export default {
data: () => ({}),
props: {
reportId: Number,
ayaType: Number
}
};
</script>