Skip to main content

Posts

Showing posts with the label Vue 3 vs Vue 1

What’s New in Vue CLI 3.0?

An overview of the latest Vue-CLI version and why you should we use next project? The List of Vue CLI 3.0 features :- 1.       It is totally plug-in-based. 2.       Zero configuration by default, so you spend all your time on development. 3.       You can make your own plug-in and presets. 4.       Configure everything without ejecting making upgrading really seamless. How to Install Vue CLI 3.0? The Vue CLI version 3 NPM command is - npm install -g @vue/cli Also explore - What’s New in Vue 3.0?

Vue 3 vs Vue 2 vs VueJs

The Vue is a progressive Javascript Framework  and used to build interactive user interfaces and also, it’s focused on the view layer only (front end). What’s New in Vue 2? 1.       Rendering layer is now based on a lightweight virtual DOM implementation 2.       Detection of static class names and attributes 3.       Detection of subtrees without dynamic bindings 4.       It supports server-side rendering with client-side hydration 5.       It Support to JSX 6.       Template-to-virtual-DOM compiler What’s New in Vue 3? Making it Smaller: - Vue is already quite small, at around 20kb gzipped at runtime. But we can expect it to get even more compact, at 10kb gzipped for the new core runtime. Virtual DOM Rewrite: - Virtual DOM being rewritten from the ground up and he rewrites will include more efficient ...