zoukankan      html  css  js  c++  java
  • Vue: 生命周期

    <!DOCTYPE html>
    <html>
    
    <head>
      <meta charset="utf-8">
      <script src="https://unpkg.com/vue/dist/vue.js"></script>
    </head>
    
    <body>
      <div id="app">
        <h1>{{title}}</h1>
        <button @click="title = 'changed'">Update title</button>
        <button @click="destory">Destory</button>
      </div>
      <script>
        new Vue({
          el: '#app',
          data: {
            title: 'Vuejs instance'
          },
          methods: {
            destory: function() {
              this.$destory();
            }
          },
          // 初始化的时候调用,调用顺序为:beforeCreate-> created-> beforeMount -> mounted
          beforeCreate: function() {
            console.log('before created called');
          },
          created: function() {
            console.log('created called');
          },
          beforeMount: function() {
            console.log('beforeMount called');
          },
          mounted: function() {
            console.log('mounted called');
          },
          // beforeUpdate/updated data更新的时候调用,如果数据不更新,则不调用
          beforeUpdate: function() {
            console.log('beforUpdate called');
          },
          updated: function() {
            console.log('updated called');
          },
          // destory调用以后,所有的data不再受vuejs控制,意思是destory以后所有的方法都不再有用,移除了所有的js逻辑
          beforeDestory: function() {
            console.log('befor destory called');
          },
          destoryed: function() {
            console.log('destoryed called');
          }
        });
      </script>
    </body>
    
    </html>
  • 相关阅读:
    git-for-windows 安装无图标的问题
    开源协议
    根据iframe获取window
    JS的checkbox状态切换dom无变化
    SQL条件!=null查不出数据
    jquery获取select选中项的文本
    泛型擦除
    树形菜单数据结构
    jqgrid动态填充select
    巨坑:jqgrid竟然取不到编辑模式下input的值
  • 原文地址:https://www.cnblogs.com/ycherry/p/11208055.html
Copyright © 2011-2022 走看看