24 lines
539 B
Vue
24 lines
539 B
Vue
<template>
|
|
<div class="w-full md:w-4/5 lg:w-3/5 md:mx-auto md:max-w-4xl p-4">
|
|
<h3 class="font-semibold mt-4 text-xl">
|
|
Form Analytics (last 30 days)
|
|
</h3>
|
|
<form-stats :form="form" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import FormStats from "~/components/open/forms/components/FormStats.vue"
|
|
|
|
const props = defineProps({
|
|
form: { type: Object, required: true },
|
|
})
|
|
|
|
definePageMeta({
|
|
middleware: "auth",
|
|
})
|
|
useOpnSeoMeta({
|
|
title: props.form ? "Form Analytics - " + props.form.title : "Form Analytics",
|
|
})
|
|
</script>
|