test 2
This commit is contained in:
23
resources/js/Pages/Rpo/Results.vue
Normal file
23
resources/js/Pages/Rpo/Results.vue
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
<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>
|
||||||
Reference in New Issue
Block a user