Layout reveal not working after upgrading to 0.15
-
It doesn’t work. Anybody else encountered this?
-
You can use reveal on Layout header or Layout footer
<!-- layout.vue -->
<q-layout-header reveal>
<q-toolbar :inverted="$q.theme === ‘ios’">
…
</q-toolbar><nav-tabs v-if="$q.theme === ‘mat’" />
</q-layout-header><q-layout-footer reveal v-if="$q.theme === ‘ios’">
<nav-tabs />
</q-layout-footer> -
@rusia what does “It doesn’t work.” mean? What have you tried? What does your code look like? Have you read the docs?
-
@benoitranque I used it in QLayout like in 0.14 and it didn’t work. I didn’t notice that in 0.15 the reveal property moved to QLayoutHeader/QLayoutFooter as @cheebhodh mentioned. Now it works. Thanks @cheebhodh !