Prechádzať zdrojové kódy

Test VueJS transition

jojo 5 rokov pred
rodič
commit
ada302663b
3 zmenil súbory, kde vykonal 15 pridanie a 7 odobranie
  1. 1 0
      public/index.html
  2. 13 6
      src/App.vue
  3. 1 1
      tests/unit/AppMenu.spec.js

+ 1 - 0
public/index.html

@@ -4,6 +4,7 @@
     <meta charset="utf-8">
     <meta http-equiv="X-UA-Compatible" content="IE=edge">
     <meta name="viewport" content="width=device-width,initial-scale=1, shrink-to-fit=no">
+    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
     <link rel="icon" href="<%= BASE_URL %>favicon.ico">
     <title><%= htmlWebpackPlugin.options.title %></title>
   </head>

+ 13 - 6
src/App.vue

@@ -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>

+ 1 - 1
tests/unit/AppMenu.spec.js

@@ -1,6 +1,6 @@
 import { expect } from 'chai';
 import { shallowMount } from '@vue/test-utils';
-import AppMenu from '@/menu/AppMenu.vue'
+import AppMenu from '@/menu/AppMenu.vue';
 
 // const wrapper =
 shallowMount(AppMenu);