2022-11-09 10:23:17 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<h3 class="font-semibold mt-4 text-xl">
|
|
|
|
Form Analytics (last 30 days)
|
|
|
|
</h3>
|
|
|
|
<form-stats :form="form"/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import FormStats from '../../../components/open/forms/components/FormStats'
|
2022-12-22 10:55:17 +00:00
|
|
|
import SeoMeta from '../../../mixins/seo-meta'
|
2022-11-09 10:23:17 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {FormStats},
|
|
|
|
props: {
|
|
|
|
form: { type: Object, required: true }
|
|
|
|
},
|
2022-12-22 10:55:17 +00:00
|
|
|
mixins: [SeoMeta],
|
2022-11-09 10:23:17 +00:00
|
|
|
|
|
|
|
data: () => ({
|
|
|
|
}),
|
|
|
|
|
|
|
|
mounted() {},
|
|
|
|
|
2022-12-22 10:55:17 +00:00
|
|
|
computed: {
|
|
|
|
metaTitle() {
|
|
|
|
return (this.form) ? 'Form Analytics - '+this.form.title : 'Form Analytics'
|
|
|
|
},
|
|
|
|
},
|
2022-11-09 10:23:17 +00:00
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|