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

29 lines
498 B
Vue
Raw Normal View History

2022-09-20 19:59:52 +00:00
<template />
<script>
import { mapGetters } from 'vuex'
export default {
components: { },
layout: 'default',
middleware: 'auth',
metaInfo () {
return { title: 'Error' }
},
data: () => ({}),
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>