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>
|
2023-01-21 11:57:37 +00:00
|
|
|
import FormStats from '../../../components/open/forms/components/FormStats.vue'
|
|
|
|
import SeoMeta from '../../../mixins/seo-meta.js'
|
2022-11-09 10:23:17 +00:00
|
|
|
|
|
|
|
export default {
|
2023-03-27 13:28:22 +00:00
|
|
|
name: 'Stats',
|
2022-11-09 10:23:17 +00:00
|
|
|
components: {FormStats},
|
|
|
|
props: {
|
2023-03-26 11:43:23 +00:00
|
|
|
form: {type: Object, required: true},
|
2022-11-09 10:23:17 +00:00
|
|
|
},
|
2022-12-22 10:55:17 +00:00
|
|
|
mixins: [SeoMeta],
|
2022-11-09 10:23:17 +00:00
|
|
|
|
2023-03-26 11:43:23 +00:00
|
|
|
data: () => ({}),
|
2022-11-09 10:23:17 +00:00
|
|
|
|
2022-12-22 10:55:17 +00:00
|
|
|
computed: {
|
|
|
|
metaTitle() {
|
2023-03-26 11:43:23 +00:00
|
|
|
return (this.form ? ('Form Analytics - ' + this.form.title) : 'Form Analytics')
|
|
|
|
}
|
2022-11-09 10:23:17 +00:00
|
|
|
}
|
|
|
|
}
|
2023-03-26 11:43:23 +00:00
|
|
|
</script>
|