[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

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



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.

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.

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.

You can query the Vue version by using Vue Devtools to view the Vue tab in the browser's console. Use npm to run the "npm list -g vue" command. Find the Vue item in the "dependencies" object of the package.json file. For Vue CLI projects, run the "vue --version" command. Check the version information in the <script> tag in the HTML file that refers to the Vue file.