请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

为什么报错了?提示Uncaught TypeError: delayedLeave is not a function

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>

正在回答 回答被采纳积分+3

插入代码

2回答

fishenal 2017-09-14 15:16:46

全局搜搜delayedLeave吧,Hello组件里有没有,transition去掉试试,也有可能是这个默认组件里报错

0 回复 有任何疑惑可以回复我~
  • 提问者 Willsf #1
    把mode="in-out"去掉就不报错了
    回复 有任何疑惑可以回复我~ 2017-09-14 19:05:10
  • fishenal 回复 提问者 Willsf #2
    那应该是是transition组件内部的问题
    回复 有任何疑惑可以回复我~ 2017-09-18 13:43:46
提问者 Willsf 2017-09-13 22:59:40

https://img1.sycdn.imooc.com/szimg//59b947c80001b43210770401.jpg错误截图

0 回复 有任何疑惑可以回复我~
问题已解决,确定采纳
还有疑问,暂不采纳
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号