We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E.g. when no matching pages are returned from the API?
The text was updated successfully, but these errors were encountered:
@simplenotezy not yet but I would welcome a PR if you want to take a stab at it!
Sorry, something went wrong.
https://github.com/raniesantos/vue-error-page is (mostly) working for me as an integration for handling 404s in my Post & Page components.
Hello,
I don't know if it's a viable solution but I implement 404 page in the Page.vue component directly this way :
Page.vue
mounted () { if (!this.page(this.$route.params.pageSlug)) { this.$router.push({ name: 'PageNotFound' }) } }
And on my router/index.js :
router/index.js
{ path: "/404", name: "PageNotFound", component: PageNotFound },
No branches or pull requests
E.g. when no matching pages are returned from the API?
The text was updated successfully, but these errors were encountered: