Nuxt provides a way to dynamically set a layout within a component, but is there a way to determine which layout is in use from within the <template> e.g. v-if="layout === 'me'"? For example, I want to use a single route /c/dream and provide one layout for a user who is authenticated and another layout for a user who is not authenticated. If I can determine the layout in use from within the template, then I can structure the HTML according to the layout. I've inspected the this object in a component and do not see a way to determine which layout is in use.