2022-09-20 19:59:52 +00:00
|
|
|
<template />
|
|
|
|
|
|
|
|
<script>
|
2023-12-01 17:57:14 +00:00
|
|
|
import { computed } from 'vue'
|
|
|
|
import { useAuthStore } from '../../stores/auth'
|
2023-01-21 11:57:37 +00:00
|
|
|
import SeoMeta from '../../mixins/seo-meta.js'
|
2022-09-20 19:59:52 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: { },
|
|
|
|
layout: 'default',
|
|
|
|
middleware: 'auth',
|
2022-12-22 10:55:17 +00:00
|
|
|
mixins: [SeoMeta],
|
2022-09-20 19:59:52 +00:00
|
|
|
|
2023-12-01 17:57:14 +00:00
|
|
|
setup () {
|
|
|
|
const authStore = useAuthStore()
|
|
|
|
return {
|
|
|
|
authenticated : computed(() => authStore.check),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2022-12-22 10:55:17 +00:00
|
|
|
data: () => ({
|
|
|
|
metaTitle: 'Error',
|
|
|
|
}),
|
2022-09-20 19:59:52 +00:00
|
|
|
|
|
|
|
mounted () {
|
|
|
|
this.$router.push({ name: 'pricing' })
|
|
|
|
this.alertError('Unfortunately we could not confirm your subscription. Please try again and contact us if the issue persists.')
|
|
|
|
},
|
|
|
|
|
2023-12-01 17:57:14 +00:00
|
|
|
computed: {}
|
2022-09-20 19:59:52 +00:00
|
|
|
}
|
|
|
|
</script>
|