wrap Transition around various views
This commit is contained in:
parent
10cada1f51
commit
936c61f0ba
5 changed files with 70 additions and 64 deletions
|
@ -166,6 +166,7 @@ onMounted(async () => {
|
||||||
|
|
||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
.template.gallery-list
|
.template.gallery-list
|
||||||
|
Transition
|
||||||
.navigation(
|
.navigation(
|
||||||
v-if='ready'
|
v-if='ready'
|
||||||
)
|
)
|
||||||
|
|
|
@ -63,6 +63,7 @@ onMounted(async () => {
|
||||||
|
|
||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
.template.gallery-view
|
.template.gallery-view
|
||||||
|
Transition
|
||||||
.view-wrapper(
|
.view-wrapper(
|
||||||
v-if='ready'
|
v-if='ready'
|
||||||
)
|
)
|
||||||
|
|
|
@ -26,6 +26,7 @@ onMounted(async () => {
|
||||||
|
|
||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
.template.markdown
|
.template.markdown
|
||||||
|
Transition
|
||||||
EmbedableContent(
|
EmbedableContent(
|
||||||
v-if='content'
|
v-if='content'
|
||||||
:content='content'
|
:content='content'
|
||||||
|
|
|
@ -64,6 +64,7 @@ onMounted(async () => {
|
||||||
|
|
||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
.template.project-list
|
.template.project-list
|
||||||
|
Transition
|
||||||
.projects(
|
.projects(
|
||||||
v-if='ready'
|
v-if='ready'
|
||||||
)
|
)
|
||||||
|
@ -78,6 +79,7 @@ onMounted(async () => {
|
||||||
:viewPath='projectViewPath'
|
:viewPath='projectViewPath'
|
||||||
:isInternal='true'
|
:isInternal='true'
|
||||||
)
|
)
|
||||||
|
Transition
|
||||||
FilterPanel(
|
FilterPanel(
|
||||||
v-if='ready && !!config.tags'
|
v-if='ready && !!config.tags'
|
||||||
:tags='config.tags'
|
:tags='config.tags'
|
||||||
|
|
|
@ -45,6 +45,7 @@ onMounted(async () => {
|
||||||
|
|
||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
.template.project-view
|
.template.project-view
|
||||||
|
Transition
|
||||||
article(
|
article(
|
||||||
v-if='ready'
|
v-if='ready'
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue