Giovanni Far
Giovanni Far
Hey guys, I’m sorry if I’m answering just now but I had a veeeery stressfull time. I’m using the angular cli (angular 6) which with some tricks allow to customize...
> Isn't this something like the existing `Find Usages` functionality? Yes… is similar. But what I mean is that as soon as you click to the key you jump to...
@fenivana You could reach your goal in a easy way. At the end of your routes have something like this: ``` { path: '*', name: 'notFound', component: NotFoundComponent }, {...
@aeharding I think you're right, as a full stack web developer in a MVC framework usually this task is handled by the controller. > If something goes wrong it's the...
so in every `component page` you have: ``` import Comment from '@/components/comment/Comment'; import NotFound from './NotFound'; ``` and ``` computed: { component() { if (this.$store.getters.currentComment.status === 404) { return 'NotFound';...
@aeharding If you can centralize that logic in a single place and make it a bit more dynamic, every update on that logic could be made only in one place....
Yes im with you about that! - What do you think to register your `notFound/Error`component in your main `App`component instead in each `page component`? - Then remove the `:is`statement with...
@AustinPaquette, unfortunately, I don't think so.