[Hematemesis Organizing] 40+ Vue3 practical tools shared
It has been almost 2 years since Vue3 was officially released. In February this year, it officially became the default version of the Vue project. The following article summarizes 40 Vue3 practical tools, UI libraries, plug-ins, and ecology to share with you. I hope it will be helpful to everyone.
1. Vue3 UI component library
The UI component library can be understood as a collection of reused interface design elements. It is a file library. The UI component library plays the role of behavioral connection in the entire system, is the horizontal collaboration between designers and developers within the team, and is the normative basis to ensure consistent product output. (Learning video sharing: vue video tutorial)
Here are 17 Vue3 UI component libraries, including 13 Web UI libraries and 4 mobile UI libraries. Read the article " 17 Vue3 practical UI component libraries (Web mobile) can be obtained by sharing 》.
Web UI Library
ElementUI Plus: Component Library for Designers and Developers
Ant Design of Vue: Ant Design’s Vue implements, develops and serves enterprise-level backend products
BalmUI: UI component library designed based on Google’s Material Design
Naive UI: Free open source front-end UI component library based on Vue 3.0/TypeScript
arco.design: Bytedance enterprise-level product design system, supports React and Vue Dual version
Quasar: a complete, performance-focused framework
. . .
Mobile UI Library
Vant: Mobile Component Library
NutUI: Jingdong style lightweight mobile Vue component library
Varlet: Material style mobile component library
nutui-bingo: Jingdong’s lottery component library based on NutUI
2, Vue3 practical development tool
In the previous article "7 Vue3 practical development tools worth collecting (share)", we introduced 7 practical Vue3 development tools:
unplugin-vue-components: on-demand components Automatically import plug-in
vuex-persistedstate: Vuex persistence plug-in
vuex-persist: Vuex persistence plug-in that supports Typescript
@vueuse/gesture: Gesture library to make applications interactive
unplugin-auto-import
pinia-plugin-persistedstate: Pinia data persistent storage
vue-termui.dev: A terminal UI framework based on Vue.js
3. Vue3 visualization tool
With the frequent updates of technology, visual development tools have become an effective tool to improve development efficiency. In the previous article "[Summary] 4 Vue3 visualization tools", we introduced 4 Vue3 visualization tools:
Pdfvuer: for Vue applications A PDF viewer in
vue3-marquee: Seamless scrolling component
Vue-ECharts: Baidu ECharts’ Vue.js component
iconpark: an open source icon library that drives vector icon styles through technology
4, Vue3 common plug-ins
In the previous article "10 Commonly Used Vue3 Plug-ins to Improve Development Efficiency (Come and Collect)", we learned about 10 vue plug-ins that help improve efficiency :
vue-multiselect-next: Universal select/multiselect/marker component for Vue
vue-print-nb: Directive wrapper
vue-i18n-next: International plug-in for Vue3
vue-cropper: vue image cropping plug-in
Vue Grid Layout: Vue’s grid layout system
Vue Qrcode Reader: A set of Vue.js components for detecting and decoding QR (two-dimensional code) codes
Makeit Captcha: Slider verification code plug-in
vue3-clipboard: Paste and copy plug-in based on Vue3
vue.draggable Vue 3 drag-and-drop component based on Sortable.js
BetterScroll is a plug-in that solves the needs of various scrolling scenarios on the mobile terminal (PC has been supported)
5. Vue3 related ecology
In the previous article "6 practical Vue3 related ecology (summary sharing)》, we learned about 6 Vue3 related ecosystems:
Vue plug-in library (vue365.cn)
Pinia: lightweight Level state management library
Nuxt Modules
Nuxt 3: Can be used to create server-side rendering (SSR) applications
vuepress: Vue-driven static website generator
VueUse: A collection of basic Vue combination utility functions
6, Vue3 animation plug-in
1) vue-starport
Cross-routing shared components with animation
github address: https://github.com/antfu/vue-starport /blob/main/README.zh-Hans.md
Demo address: https://vue-starport.netlify.app/
2) @vueuse/motion
Vue Composables makes your components move
Official address: https://motion.vueuse.org/
github Address: https://github.com/vueuse/motion
7. Audio and video components
@vueuse/sound
Vue combination for playing sound effects
Official address: https://sound.vueuse.org/
github Address: https://github.com/VueUse/sound
[Related video tutorial recommendations: vuejs introductory tutorial, web front-end introduction 】

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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

Vue.js is suitable for small and medium-sized projects and fast iterations, while React is suitable for large and complex applications. 1) Vue.js is easy to use and is suitable for situations where the team is insufficient or the project scale is small. 2) React has a richer ecosystem and is suitable for projects with high performance and complex functional needs.

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.

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.

There are three common methods for Vue.js to traverse arrays and objects: the v-for directive is used to traverse each element and render templates; the v-bind directive can be used with v-for to dynamically set attribute values for each element; and the .map method can convert array elements into new arrays.

There are two ways to jump div elements in Vue: use Vue Router and add router-link component. Add the @click event listener and call this.$router.push() method to jump.

The methods to implement the jump of a tag in Vue include: using the a tag in the HTML template to specify the href attribute. Use the router-link component of Vue routing. Use this.$router.push() method in JavaScript. Parameters can be passed through the query parameter and routes are configured in the router options for dynamic jumps.

Netflixusesacustomframeworkcalled"Gibbon"builtonReact,notReactorVuedirectly.1)TeamExperience:Choosebasedonfamiliarity.2)ProjectComplexity:Vueforsimplerprojects,Reactforcomplexones.3)CustomizationNeeds:Reactoffersmoreflexibility.4)Ecosystema

Vue component passing values is a mechanism for passing data and information between components. It can be implemented through properties (props) or events: Props: Declare the data to be received in the component and pass the data in the parent component. Events: Use the $emit method to trigger an event and listen to it in the parent component using the v-on directive.