|
@@ -12,12 +12,19 @@
|
|
|
<div class="container fill" style="height: 100vh;">
|
|
|
<!-- <div class="bg"> -->
|
|
|
<keep-alive>
|
|
|
- <component
|
|
|
- :is="display"
|
|
|
- @join-game-id="launchOnlineGame($event)"
|
|
|
- :username="username"
|
|
|
- :game-id="onlineGameId"
|
|
|
- ></component>
|
|
|
+ <transition
|
|
|
+ enter-active-class="animated bounceInUp"
|
|
|
+ leave-active-class="animated bounceOutDown"
|
|
|
+ mode="out-in"
|
|
|
+ appear
|
|
|
+ >
|
|
|
+ <component
|
|
|
+ :is="display"
|
|
|
+ @join-game-id="launchOnlineGame($event)"
|
|
|
+ :username="username"
|
|
|
+ :game-id="onlineGameId"
|
|
|
+ ></component>
|
|
|
+ </transition>
|
|
|
</keep-alive>
|
|
|
<!-- </div> -->
|
|
|
</div>
|