Files
raven-client/ayanova/src/components/report-viewer-control.vue
2020-04-07 18:20:37 +00:00

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>