An export statement should not appear within a <script setup></script> tag.
The export causing problems is in CookieControl.vue component. Since the interface that is exported in this component is not imported anywhere, I just removed the export part.
📚 Description
An export statement should not appear within a
<script setup></script>
tag. The export causing problems is in CookieControl.vue component. Since the interface that is exported in this component is not imported anywhere, I just removed theexport
part.Vue 3 docs on declaring named exports inside script setup
Resolves #146
📝 Checklist