opnform/resources/js/pages/subscriptions/error.vue

29 lines
538 B
Vue
Raw Normal View History

2022-09-20 19:59:52 +00:00
<template />
<script>
import { mapGetters } from 'vuex'
import SeoMeta from '../../mixins/seo-meta'
2022-09-20 19:59:52 +00:00
export default {
components: { },
layout: 'default',
middleware: 'auth',
mixins: [SeoMeta],
2022-09-20 19:59:52 +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.')
},
computed: {
...mapGetters({
authenticated: 'auth/check'
})
}
}
</script>