opnform/client/pages/forms/[slug]/show/submissions.vue

36 lines
573 B
Vue
Raw Normal View History

2023-12-09 14:47:03 +00:00
<template>
<div id="table-page">
<form-submissions/>
</div>
</template>
<script>
2023-12-20 15:10:32 +00:00
import FormSubmissions from '../../../../components/open/forms/components/FormSubmissions.vue'
2023-12-09 14:47:03 +00:00
export default {
components: {FormSubmissions},
props: {
form: {type: Object, required: true}
},
setup (props) {
definePageMeta({
middleware: "auth"
})
useOpnSeoMeta({
title: (props.form) ? 'Form Submissions - '+props.form.title : 'Form Submissions'
})
},
2023-12-09 14:47:03 +00:00
data: () => ({}),
mounted() {
},
computed: {
},
methods: {}
}
</script>