Fixed form creation
This commit is contained in:
31
client/pages/forms/[slug]/show/submissions.vue
Normal file
31
client/pages/forms/[slug]/show/submissions.vue
Normal file
@@ -0,0 +1,31 @@
|
||||
<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: {
|
||||
form: {type: Object, required: true}
|
||||
},
|
||||
mixins: [SeoMeta],
|
||||
|
||||
data: () => ({}),
|
||||
|
||||
mounted() {
|
||||
},
|
||||
|
||||
computed: {
|
||||
metaTitle() {
|
||||
return (this.form) ? 'Form Submissions - ' + this.form.title : 'Form Submissions'
|
||||
},
|
||||
},
|
||||
|
||||
methods: {}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user