Context support in layouts
[issue link]Hi!
Right now there is no context in the layouts.
I can understand why there is no context in components and it is not a problem. I can inject needed variables from pages to components via props. As described here
But how I can do it with layout?
For example I would love to do things like this:
<div v-if="isDev"> [...] </div>
or like to change some layouts component according to the http.Request etc.
Is it possible to add context to the layouts or maybe there is some workaround?
Thanks in advance,