1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | //App.vue <template> <div id= "app" > <img src= "./assets/logo.png" > <button v-on:click= "toggleCom" > Toggle </button> <div class= "ab" > <transition name= "fade" mode= "in-out" > <!--<p v-show= "show" >i am show</p>--> <div :is= "currentVue" v-show= "show" ></div> </transition> </div> </div> </template> <script> import Hello from './components/Hello' import Apple from "./components/apples" import Banana from "./components/bananas" export default { data(){ return { show: true , currentVue:Apple } }, name: 'app' , components: { Hello, Apple, Banana }, computed:{ totalPrice(){ return this .$store.state.totalPrice } }, methods:{ toggleCom: function () { if ( this .currentVue=== 'Apple' ){ this .currentVue= 'Banana' } else { this .currentVue= 'Apple' } } } } </script> <style> .fade-enter-active,.fade-leave-active{ transition: all 1.5s; } .fade-enter{ transform: translateX(500px); opacity: 0; } .fade-leave-active{ transform: translateX(-500px); opacity: 0; } </style> //banans,apple.vue <template> <div> <h1>{{msg}}</h1> <button>+</button> </div> </template> <script> export default { data(){ return { msg: "i am apples" , price:5 } }, </script> |