2023-12-09 15:47:03 +01:00
|
|
|
<template />
|
|
|
|
|
|
|
|
|
|
<script>
|
2024-04-15 19:39:03 +02:00
|
|
|
import { computed } from "vue"
|
|
|
|
|
import { useAuthStore } from "../../stores/auth"
|
2023-12-09 15:47:03 +01:00
|
|
|
|
|
|
|
|
export default {
|
2024-04-15 19:39:03 +02:00
|
|
|
components: {},
|
|
|
|
|
layout: "default",
|
|
|
|
|
middleware: "auth",
|
2023-12-09 15:47:03 +01:00
|
|
|
|
2024-04-15 19:39:03 +02:00
|
|
|
setup() {
|
2024-01-04 18:38:50 +01:00
|
|
|
useOpnSeoMeta({
|
2024-04-15 19:39:03 +02:00
|
|
|
title: "Error",
|
2024-01-04 18:38:50 +01:00
|
|
|
})
|
|
|
|
|
|
2023-12-09 15:47:03 +01:00
|
|
|
const authStore = useAuthStore()
|
|
|
|
|
return {
|
2024-04-15 19:39:03 +02:00
|
|
|
authenticated: computed(() => authStore.check),
|
2023-12-09 15:47:03 +01:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
2024-04-15 19:39:03 +02:00
|
|
|
data: () => ({}),
|
2023-12-09 15:47:03 +01:00
|
|
|
|
2024-04-15 19:39:03 +02:00
|
|
|
computed: {},
|
2023-12-09 15:47:03 +01:00
|
|
|
|
2024-04-15 19:39:03 +02:00
|
|
|
mounted() {
|
|
|
|
|
this.$router.push({ name: "pricing" })
|
|
|
|
|
useAlert().error(
|
|
|
|
|
"Unfortunately we could not confirm your subscription. Please try again and contact us if the issue persists.",
|
|
|
|
|
)
|
|
|
|
|
},
|
2023-12-09 15:47:03 +01:00
|
|
|
}
|
|
|
|
|
</script>
|