search
HomeWeb Front-endFront-end Q&AWhat is the difference between vuejs1.0 and 2.0

Difference: 1. In VUE2.0, all code must be wrapped with the root element, but not in VUE1.0. 2. Components are defined in different ways. 3. The life cycle functions are different. 4. Vue2.0 has deleted all the built-in filters in vue1.0. To use filters in vue2.0, you need to customize them, but vue1.0 does not.

What is the difference between vuejs1.0 and 2.0

The operating environment of this tutorial: windows7 system, vue2.9.6 version, DELL G3 computer.

1. In each component template, the fragment code that no longer supports

VUE1.0 is:

<template>
  <h3 id="我是组件">我是组件</h3><strong>我是加粗标签</strong>
</template>

VUE2. 0: There must be a root element that wraps all the code

<template id="aaa">
  <div>
    <h3 id="我是组件">我是组件</h3>
      <strong>我是加粗标签</strong>
   </div>
</template>

2. Different ways of defining components

The way VUE1.0 defines components There are:

Vue.extend This method is available in 2.0, but there are some changes

Vue.component(组件名称,{  在2.0继续能用
  data(){}
  methods:{}
  template:
});

The way VUE2.0 defines components is simpler

var Home={
    template:&#39;&#39;    ->  相当于Vue.extend()
};

3. Life cycle changes

1. Life cycle of 1.0:

##initThe component has just been created, but the Data, method and other attributes have not been calculated yetcreatedComponent creation has been completed, but the DOM has not yet been generatedbeforeCompileBefore template compilationcompiledAfter template compilationreadyComponent preparation (usually used more)attachedCalled when vm.$el is inserted into the DOMdetachedIn vm.$el Called when deleted from the DOMbeforeDestoryBefore the component is destroyeddestoryedAfter the component is destroyed
Cycle Explanation

The following picture is the official flow chart about the 1.0 life cycle:

What is the difference between vuejs1.0 and 2.0# #2. Life cycle of 2.0

CyclebeforeCreatecreatedbeforeMountmountedbeforeUpdateupdatedactivateddeactivatedbeforeDestory destroyed

下图是官方关于2.0生命周期的流程图:
What is the difference between vuejs1.0 and 2.0

借用一位大神的图来总结他们的变化:
What is the difference between vuejs1.0 and 2.0

2.0生命生命周期变化感觉变得更加语义化一点(有规律可寻,更好记了),而且增加了beforeUpdate、updated、activated、deactivated,删除了attached、detached。

四、过滤器

2.0将1.0所有自带的过滤器都删除了,也就是说,在2.0中,要使用过滤器,则需要我们自己编写,以下是一个自定义过滤器示例,

Vue.filter(&#39;toDou&#39;,function(n,a,b){
    return n<10?n+a+b:&#39;&#39;+n;
});

如果想展示JSON数据,不需要调用过滤器了,框架会自动帮我们解析出来;
2.0过滤器的传参方式不是以前的方式,是以函数传参的方式,下面示例:

之前调用:       {{msg | mimi &#39;12&#39; &#39;5&#39;}}
现在调用:   {{msg | mimi(&#39;12&#39;,&#39;5&#39;)}}

五、循环

刚学vue1.0的人可能会碰到一个错误信息: 

What is the difference between vuejs1.0 and 2.0

这里提示我们要使用tranck-by=”$index”,这个属性也可以帮我们提高for循环的性能,而在2.0,使用重复数据将不会报错,同时也去掉了一些隐式变量如:index、key,那我们如果要用到这些数据则可以通过ES6的语法来获取

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

关于整数循环,1.0的整数循环是从0开始的,2.0的整数循环是从1开始的,下面对比:

//HTML代码
<ul id=&#39;box&#39;>
    <li v-for=&#39;val in 5&#39; v-text=&#39;val&#39;></li>
</ul>

运行结果:
What is the difference between vuejs1.0 and 2.0

What is the difference between vuejs1.0 and 2.0

四、片段代码

编写template的时候,2.0必须要用一个根元素(如p)将代码片段包裹起来,否则报错。

之前:   在1.0使用时完全没问题
    <template>
        <h3 id="我是组件">我是组件</h3><strong>我是加粗标签</strong>
    </template>
现在:  必须有根元素,包裹住所有的代码
    <template id="aaa">
            <div>
                <h3 id="我是组件">我是组件</h3>
                <strong>我是加粗标签</strong>
            </div>
    </template>

相关推荐:《vue.js教程

Explanation
The component has just been created, but the Data, method and other attributes have not been calculated yet
The component creation has been completed, but the DOM has not been calculated yet Generated
Before template compilation
After template compilation, component preparation
Before the component is updated (when data etc. change)
After the component is updated (When data etc. change)
for keep-alive, called when the component is activated
for keep-alive, called when the component is removed
Before the component is destroyed
After the component is destroyed

The above is the detailed content of What is the difference between vuejs1.0 and 2.0. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Vue常见面试题汇总(附答案解析)Vue常见面试题汇总(附答案解析)Apr 08, 2021 pm 07:54 PM

本篇文章给大家分享一些Vue面试题(附答案解析)。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

5 款适合国内使用的 Vue 移动端 UI 组件库5 款适合国内使用的 Vue 移动端 UI 组件库May 05, 2022 pm 09:11 PM

本篇文章给大家分享5 款适合国内使用的 Vue 移动端 UI 组件库,希望对大家有所帮助!

vue中props可以传递函数吗vue中props可以传递函数吗Jun 16, 2022 am 10:39 AM

vue中props可以传递函数;vue中可以将字符串、数组、数字和对象作为props传递,props主要用于组件的传值,目的为了接收外面传过来的数据,语法为“export default {methods: {myFunction() {// ...}}};”。

手把手带你利用vue3.x绘制流程图手把手带你利用vue3.x绘制流程图Jun 08, 2022 am 11:57 AM

利用vue3.x怎么绘制流程图?下面本篇文章给大家分享基于 vue3.x 的流程图绘制方法,希望对大家有所帮助!

聊聊vue指令中的修饰符,常用事件修饰符总结聊聊vue指令中的修饰符,常用事件修饰符总结May 09, 2022 am 11:07 AM

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何覆盖组件库样式?React和Vue项目的解决方法浅析如何覆盖组件库样式?React和Vue项目的解决方法浅析May 16, 2022 am 11:15 AM

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!

通过9个Vue3 组件库,看看聊前端的流行趋势!通过9个Vue3 组件库,看看聊前端的流行趋势!May 07, 2022 am 11:31 AM

本篇文章给大家分享9个开源的 Vue3 组件库,通过它们聊聊发现的前端的流行趋势,希望对大家有所帮助!

react与vue的虚拟dom有什么区别react与vue的虚拟dom有什么区别Apr 22, 2022 am 11:11 AM

react与vue的虚拟dom没有区别;react和vue的虚拟dom都是用js对象来模拟真实DOM,用虚拟DOM的diff来最小化更新真实DOM,可以减小不必要的性能损耗,按颗粒度分为不同的类型比较同层级dom节点,进行增、删、移的操作。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment