24 lines
566 B
Vue
24 lines
566 B
Vue
<script setup>
|
|
import GuestLayout from '@/Layouts/GuestLayout.vue';
|
|
import { Head, Link, useForm } from '@inertiajs/inertia-vue3';
|
|
import rpoFields from '../../Data/MultiSelectOptionsRPO';
|
|
import { onMounted, ref } from 'vue';
|
|
import { defineEmits } from 'vue'
|
|
import { Inertia } from '@inertiajs/inertia';
|
|
import RpoRecord from '@/Components/RpoRecord.vue';
|
|
|
|
defineProps({
|
|
result: Object,
|
|
});
|
|
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<GuestLayout>
|
|
|
|
<Head title="Register výsledky" />
|
|
<RpoRecord :data="result"/>
|
|
</GuestLayout>
|
|
</template>
|