In what year did vue come out?
vue.js was inspired by Angular and was developed in 2013. It was originally named Seed; it was renamed vue in December of the same year, and the version number is "0.6.0". It was officially released in 2014, and the version number is "0.8.0".
The operating environment of this tutorial: windows7 system, vue2.9.6 version, Dell G3 computer.
Vue.js is a progressive framework for building user interfaces. Unlike other heavyweight frameworks, Vue adopts a bottom-up incremental development design. Vue's core library only focuses on the view layer, and is very easy to learn and integrate with other libraries or existing projects. Vue, on the other hand, is fully capable of driving complex single-page applications developed using single-file components and libraries supported by the Vue ecosystem.
The goal of Vue.js is to enable responsive data binding and composed view components through the simplest possible API.
Vue.js itself is not a comprehensive framework - it only focuses on the view layer. Therefore it is very easy to learn and very easy to integrate with other libraries or existing projects. On the other hand, Vue.js is also perfectly capable of powering complex single-page applications when used with related tools and supporting libraries.
vue.js development history:
In 2013, You Yuxi, who was working at Google, was inspired by Angular, extracted the parts he liked and developed A lightweight framework was developed, originally named Seed.
In December of the same year, this seed sprouted and was renamed Vue. The version number was 0.6.0.
2014.01.24, Vue was officially released to the public, the version number is 0.8.0.
0.9.0, released on February 25, 2014, has its own codename: Animatrix. This name comes from the animated version of "The Matrix". From then on, important versions will have their own codenames.
Related recommendations: "vue.js Tutorial"
0.12.0 was released on 2015.06.13, codenamed Dragon Ball (Dragon Ball). This year, Vue ushered in After a big explosion, the Laravel community (a community of a popular PHP framework) used Vue for the first time (I also met Vue on this forum), and Vue also gained popularity in the JS community.
1.0.0 Evangelion is the first milestone in the history of Vue. In the same year, vue-router (2015-08-18), vuex (2015-11-28), and vue-cli (2015-12-27) were released one after another, marking the development of Vue from a view layer library to a progressive framework. Many front-end students also became Vue users from this version.
2.0.0 Ghost in the Shell is the second important milestone. It absorbs React's Virtual Dom solution and also supports server-side rendering.
Features
-
Easy to use
Get started quickly based on HTML CSS JavaScript.
-
Flexible
Simple and compact core and progressive technology stack are enough to handle applications of any scale.
-
Performance
20kb min gzip running size, ultra-fast virtual DOM, and the most worry-free optimization.
For more programming-related knowledge, please visit: Programming Video! !
The above is the detailed content of In what year did vue come out?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



You can add a function to the Vue button by binding the button in the HTML template to a method. Define the method and write function logic in the Vue instance.

Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

There are three ways to refer to JS files in Vue.js: directly specify the path using the <script> tag;; dynamic import using the mounted() lifecycle hook; and importing through the Vuex state management library.

The watch option in Vue.js allows developers to listen for changes in specific data. When the data changes, watch triggers a callback function to perform update views or other tasks. Its configuration options include immediate, which specifies whether to execute a callback immediately, and deep, which specifies whether to recursively listen to changes to objects or arrays.

Vue.js has four methods to return to the previous page: $router.go(-1)$router.back() uses <router-link to="/" component window.history.back(), and the method selection depends on the scene.

Implement marquee/text scrolling effects in Vue, using CSS animations or third-party libraries. This article introduces how to use CSS animation: create scroll text and wrap text with <div>. Define CSS animations and set overflow: hidden, width, and animation. Define keyframes, set transform: translateX() at the beginning and end of the animation. Adjust animation properties such as duration, scroll speed, and direction.

Function interception in Vue is a technique used to limit the number of times a function is called within a specified time period and prevent performance problems. The implementation method is: import the lodash library: import { debounce } from 'lodash'; Use the debounce function to create an intercept function: const debouncedFunction = debounce(() => { / Logical / }, 500); Call the intercept function, and the control function is called at most once in 500 milliseconds.

Vue multi-page development is a way to build applications using the Vue.js framework, where the application is divided into separate pages: Code Maintenance: Splitting the application into multiple pages can make the code easier to manage and maintain. Modularity: Each page can be used as a separate module for easy reuse and replacement. Simple routing: Navigation between pages can be managed through simple routing configuration. SEO Optimization: Each page has its own URL, which helps SEO.
