Fix composable issue
This commit is contained in:
@@ -4,32 +4,18 @@
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
<script setup>
|
||||
import FormSubmissions from '../../../../components/open/forms/components/FormSubmissions.vue'
|
||||
|
||||
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'
|
||||
})
|
||||
},
|
||||
|
||||
data: () => ({}),
|
||||
|
||||
mounted() {
|
||||
},
|
||||
|
||||
computed: {
|
||||
},
|
||||
|
||||
methods: {}
|
||||
const props = {
|
||||
form: {type: Object, required: true}
|
||||
}
|
||||
|
||||
definePageMeta({
|
||||
middleware: "auth"
|
||||
})
|
||||
useOpnSeoMeta({
|
||||
title: (props.form) ? 'Form Submissions - ' + props.form.title : 'Form Submissions'
|
||||
})
|
||||
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user