opnform/client/pages/forms/[slug]/show/stats.vue

28 lines
552 B
Vue
Raw Normal View History

2023-12-09 14:47:03 +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-12-20 15:10:32 +00:00
import FormStats from '../../../../components/open/forms/components/FormStats.vue'
import SeoMeta from '../../../../mixins/seo-meta.js'
2023-12-09 14:47:03 +00:00
export default {
components: {FormStats},
2023-12-20 17:38:43 +00:00
2023-12-09 14:47:03 +00:00
props: {
form: {type: Object, required: true},
},
computed: {
metaTitle() {
return (this.form ? ('Form Analytics - ' + this.form.title) : 'Form Analytics')
}
}
}
</script>