opnform/resources/js/pages/forms/show/submissions.vue

32 lines
562 B
Vue
Raw Normal View History

<template>
<div id="table-page">
<form-submissions/>
</div>
</template>
<script>
import FormSubmissions from '../../../components/open/forms/components/FormSubmissions.vue'
import SeoMeta from '../../../mixins/seo-meta.js'
export default {
components: {FormSubmissions},
props: {
2023-03-26 11:43:23 +00:00
form: {type: Object, required: true}
},
mixins: [SeoMeta],
2023-03-26 11:43:23 +00:00
data: () => ({}),
2023-03-26 11:43:23 +00:00
mounted() {
},
computed: {
metaTitle() {
2023-03-26 11:43:23 +00:00
return (this.form) ? 'Form Submissions - ' + this.form.title : 'Form Submissions'
},
},
2023-03-26 11:43:23 +00:00
methods: {}
}
</script>