码迷,mamicode.com
首页 > 其他好文 > 详细

03.vue-生命周期

时间:2019-07-25 19:09:33      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:没有   title   info   head   eth   cti   his   inf   fun   

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>生命周期</title>
  <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
  <div id=‘app‘></div>
  <script>
    let app = new Vue({
      el: #app,
      data: {
        a: 1
      },
      created: function () {
        // `this` 指向 vm 实例
        console.log(a is:  + this.a)
      }
    })
    /*
      不要在选项属性或回调上使用箭头函数,比如 created: () => console.log(this.a) 或 vm.$watch(‘a‘, newValue => this.myMethod())。
      因为箭头函数并没有 this,this 会作为变量一直向上级词法作用域查找,直至找到为止,
      经常导致 Uncaught TypeError: Cannot read property of undefined 
      或 Uncaught TypeError: this.myMethod is not a function 之类的错误
    */
  </script>
</body>
</html>

技术图片

 

03.vue-生命周期

标签:没有   title   info   head   eth   cti   his   inf   fun   

原文地址:https://www.cnblogs.com/chosen-chen/p/11246263.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!