原文链接:https://www.cnblogs.com/itbainianmei/p/6062249.html

  1.每个组件模板template,不再支持片段代码

    之前:

      <template>
        <h3>vue-router+vue-loader</h3>
        <p>hshsh</p>
      </template>

       现在:必须有根元素

        <template>

          <div>
            <h3>vue-router+vue-loader</h3>
            <p>hshsh</p>

          </div>
        </template>

  2.推出一个新的组件

     如var home={

          template:' '  ->   代替了之前的Vue.extend({})的形式,直接把对象抛出来,就认为成是组件了。

        }

  3.生命周期

    之前:

    init created  beforeCompile  compiled  ready   beforeDestroy  destroyed

    现在:

    beforeCreate  组件实例刚刚被创建,属性都没有

    created          组件实例创建完毕,属性已经绑定

    beforeMount  模板编译之前

    mounted    模板编译之后,代替了之前的ready*

    beforeUpdate  组件更新之前

    updated     组件更新完毕

    beforeDestroy  组件销毁之前

    destroyed         组件销毁后

  4.循环

     2.0默认可以添加重复的数据,之前是必须加个track-by="$index"

        arr.forEach(function(item,index){ });

     去掉了一些隐式变量  $index $key

        之前:v-for="(index,val) in array"

现在:v-for="(val,index) in array"

  5.track-by="$index"

     变成<li v-for="(val,index) in arr" :key="index" >

  6.自定义键盘指令

       之前:Vue.directive("on").keyCodes.ctrl = 17;

       现在:Vue.config.keyCodes.ctrl = 17;

   7.过滤器

       内置过滤器都删了

       自定义过滤器还有,但是:

      之前:{{msg | toDou '12' '5'}}

      现在:{{msg | toDou('12','5')}}

      8.组件通信  vm.$emit()  vm.$on()

      子级想拿到父级的数据:通过props

      之前子组件可以更改父组件信息,利用sync   eg:  :msg.sync="change"

      现在不允许

      如何改:

      a)父组件每次传一个对象给子组件,对象引用

      b)只是追求不报错,可以用mounted的钩子函数,改变自身数据

      9.可以单一事件管理组件通信  ps:vuex以后单独学习

      var Event = new Vue();

      Event.$emit('事件名','数据');

      Event.$on('事件名',function(){  }.bind(this));

      10.动画

      transition不再是属性:transition="fade"

      而是像模板一样的标签了<transition name="fade" @before-enter="" @enter="" @after="" @before-leave="" @leave="" @after-leave="">这里放运动的元素,属性,路由。。。</transition>

      .fade-enter-active,.fade-leave-active{transition:1s all ease;}

      .fade-enter  初始状态

      .fade-enter-active 变成什么样,元素显示出来的时候

      .fade-leave

      .fade-leave -active 变成什么样,元素离开的时候

      配合animate.css使用:把fade和name去掉。给transition加enter-active-class="zoomInleft" leave-active-class="zoomOutRight",给运动的元素本身加class="animated"

      如果一组元素运动,标签换成<transition-group></transition-group>并且把每个运动元素加个:key="index",其他同上

   11.路由vue-router和vue-loader

    路由改变:

    1.布局的改变

    之前:<a v-link="{path:'/home'}">我是主页</a>

    现在:<router-link to="/home">我是主页</router-link>  它会自动解析成a v-link形式

    <router-view>没变

    2.路由具体写法

    var Home ={      //准备组件

      template:'<h3>我是主页</h3>'

    }

    const routes = [   //配置路由

      {path:'/home',component:Home},

      {path:'*',redirect:'/home'}   //重定向

      ...一个个json

    ];

    const router = new VueRouter({routes:routes});  //生成路由实例   简写成对象的形式 :const router = new VueRouter({routes});

    new Vue({   //最后挂到vue上

      router,

      el:'#box'

    });

    vue-loader一样的。配合起来使用也一样。

  12.路由嵌套

    const routes = [   //配置路由

      {path:'/home',component:Home},

      {path:'/news',component:News,

        children:[

          {path:'/newsname',component:newsNameDetail},

          {}

        ]

      },

      {path:'*',redirect:'/home'}   //重定向

      ...一个个json

    ];

    带有参数的路由配置

    

    //组件
    var Home={
      template:'<h3>我是主页</h3>'
    };
    var User={
      template:`
      <div>
      <h3>我是用户信息</h3>
      <ul>
        <li><router-link to="/user/strive/age/10">Strive</router-link></li>
        <li><router-link to="/user/blue/age/80">Blue</router-link></li>
        <li><router-link to="/user/eric/age/70">Eric</router-link></li>
      </ul>
      <div>
      <router-view></router-view>
      </div>
      </div>
      `
    };
    var UserDetail={
      template:'<div>{{$route.params}}</div>'
    };

    //配置路由
    const routes=[
      {path:'/home', component:Home},
      {
      path:'/user',
      component:User,
        children:[
          {path:':username/age/:age', component:UserDetail}
        ]
      },
       {path:'*', redirect:'/home'} //404
     ];

      //生成路由实例
      const router=new VueRouter({
        routes
      });

      //最后挂到vue上
      new Vue({
        router,
        el:'#box'
       });

vue2.0变化(转载)的更多相关文章

  1. vue2.0变化

    之前有很多的vue知识总结都是围绕1.0版本实现的,下面主要总结一下2.0相对于1.0的一些变化. 组件定义 在vue1.0中,我们有使用vue.extend()来创建组件构造器继而创建组件实例,如下 ...

  2. vue2.0有哪些变化

    vue2.0之后有哪些变化: 1.每个组件模板template,不再支持片段代码 之前: <template> <h3>vue-router+vue-loader</h3 ...

  3. VUE2.0不可忽视的很多变化

    今天使用webpack-sample初始一个vue-cli项目,在app.vue文件中添加了个钩子函数ready,可是ready内的事件一直不执行,检查了webpack文件和package.json也 ...

  4. Vue2.0中v-for迭代语法变化(key、index)【转】

    转自:http://blog.csdn.net/sinat_35512245/article/details/53966788 Vue2.0的代码中发现 $key这个值并不能渲染成功,问题如下:但是v ...

  5. Vue2.0以后,有哪些变化

    最近移动端项目版本升级,Vue由之前的1.0升级到2.3,那么,Vue2.0之后,有哪些细节的变化呢,现在总结如下: 1.在每个组件模板,不再支持片段代码 组件中模板: 之前: <templat ...

  6. Vue2.0的变化 ,组件模板,生命周期,循环,自定义键盘指令,过滤器

    组件模板: 之前: <template> <h3>我是组件</h3><strong>我是加粗标签</strong> </templat ...

  7. vue2.0路由变化1

    路由的步骤 1.定义组件 var Home={ template:'<h3>我是主页</h3>' }; var News={ template:'<h3>我是新闻& ...

  8. vue2.0 keep-alive 最佳实战(转载)

    1.基本用法 vue2.0提供了一个keep-alive组件用来缓存组件,避免多次加载相应的组件,减少性能消耗 <keep-alive> <component> <!-- ...

  9. Vue2.0组件之间通信(转载)

    Vue中组件这个特性让不少前端er非常喜欢,我自己也是其中之一,它让前端的组件式开发更加合理和简单.笔者之前有写过一篇Vue2.0子父组件通信,这次我们就来聊一聊平级组件之间的通信. 首先我们先搭好开 ...

随机推荐

  1. 我的第一个 Windows 窗口程序(1)

    一般来说,构建一个 Windows 程序可以分为如下几个步骤: 定义窗口类(WNDCLASS) 注册窗口类(RegisterClass) 创建窗口(CreateWindow) 更新显示窗口(Updat ...

  2. springboot不加载bootstrap.properties文件

    1.首先说一下官网对bootstrap和application两种配置文件的区别: Spring Cloud 构建于 Spring Boot 之上,在 Spring Boot 中有两种上下文,一种是 ...

  3. 四种ASP网页跳转代码

    时间:2012-06-12 21:12来源:未知 输入:铜都风尘 点击: 32987 次 如果你要在服务器端跳转,可以这样: Response.Redirect(http://blog.163.com ...

  4. [luogu3627 APIO2009] 抢掠计划 (tarjan缩点+spfa最长路)

    传送门 Description Input 第一行包含两个整数 N.M.N 表示路口的个数,M 表示道路条数.接下来 M 行,每行两个整数,这两个整数都在 1 到 N 之间,第 i+1 行的两个整数表 ...

  5. tomcat 内存溢出问题(OutOfMemoryError: PermGen space)

    导入公司项目的时候出现的问题,在此记录处理方法. tomcat在启动的时候报错:OutOfMemoryError: PermGen space PermGen space的全称是Permanent G ...

  6. poj 3356

    Description Let x and y be two strings over some finite alphabet A. We would like to transform x int ...

  7. Spring使用HibernateDaoSupport操作数据

    spring提供了一个数据訪问层的类:org.springframework.orm.hibernate3.support.HibernateDaoSupport.一般是让 dao继承该类,然后在da ...

  8. ios基础-分辨率适配

    (一)分辨率定义 分辨率,是指单位长度内包括的像素点的数量,它的单位通常为像素/英寸(ppi).描写叙述分辨率的单位有:(dpi点每英寸).lpi(线每英寸)和ppi(像素每英寸). (二)ios分辨 ...

  9. ftk学习记(首篇)

    [ 声明:版权全部,欢迎转载,请勿用于商业用途.  联系信箱:feixiaoxing @163.com] 非常早之前就知道ftk了,当时主要是由于买了李先静的书,所以知道了这么一个项目.由于对这样的g ...

  10. UVA - 11021 - Tribles 递推概率

    GRAVITATION, n.“The tendency of all bodies to approach one another with a strengthproportion to the ...