19 lines
350 B
Vue
19 lines
350 B
Vue
<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>
|