How to choose a front-end UI framework for Vue

What is Vue.js

Vue is a progressive framework for building user interfaces . Unlike other large frameworks, Vue is designed to be applied layer by layer from the bottom up. Vue's core library only focuses on the view layer, which is not only easy to use, but also easy to integrate with third-party libraries or existing projects. On the other hand, when combined with a modern toolchain and various supporting libraries , Vue is also fully capable of powering complex single-page applications.

1. If you are doing PC-side applications, the best choice is ElementUI.

npm i element-ui -S

The simplest UI writing method: http://element-cn.eleme.io/#/zh-CN/component/installation

2. For APP mobile applications, it is best to choose AUI or ionIc

Documentation: http://www.auicss.com/doc/v/2/doc_id/1

AUI 2.0 is a brand new AUI framework, which has been restructured on the basis of 1.X. In 2.0, rem is used globally to control the size, perfectly adapting to mobile devices with different resolutions; the newly added theme style sheet is convenient for developers to customize the basic color style and complete the customization of APP theme. Perfectly compatible with IOS 5.1+ to Android 4.2+. So I think he is a good UI plugin.

Guess you like

Origin blog.csdn.net/qq_23334071/article/details/81427584