Vite source code interpretation series (picture and text combination) - Plug-in

Hello, I'm glad you can click this blog. This blog is a series of articles on the interpretation of Vite source code. After reading it carefully, I believe you can have a simple understanding of Vite's workflow and principle.Vite is a new front-end construction tool, which can significantly improve the front-end development experience.I will us ...

Added by sirkodo on Sat, 05 Mar 2022 09:48:59 +0200

Build production level project architecture with vite+vue3

Vue2 (long long ago), which has been used before, is now built through our previous development experience. • framework: Vue3 • route management: Vue router • status management: Vuex • UI component library: UI element • visual data display: echarts • Internationalization: vue-i18n • data request: Axios ...

Added by rcatal02 on Wed, 16 Feb 2022 06:16:24 +0200

Construction practice of front-end drawing bed (front-end chapter)

Project backgroundIt is inevitable to use multimedia materials such as pictures and videos in the front-end development process. The common processing schemes usually separate the dynamic and static, and place pictures and other resources on the drawing bed. In addition to using the drawing bed resources commonly used in the industry, such as q ...

Added by pieai on Mon, 07 Feb 2022 13:58:38 +0200

Construction practice of front-end drawing bed (front-end chapter)

Project background It is inevitable to use multimedia materials such as pictures and videos in the front-end development process. The common processing schemes usually separate the dynamic and static, and place pictures and other resources on the drawing bed. In addition to using the drawing bed resources commonly used in the industry, suc ...

Added by ranjuvs on Mon, 07 Feb 2022 12:59:05 +0200

Release your own front-end package with vite+lerna and verdaccio

prefaceYears ago, I made a project similar to user portrait, which has independent functions and may be embedded by many projects as a functional module, so I naturally thought of making this project into a component output. Vue cli provides Library packaging mode Therefore, I only need to copy the packaged files to other projects after each de ...

Added by Simplicity on Wed, 02 Feb 2022 05:42:37 +0200

Vite learning - basic usage configuration

Because vite uses the modular function of the native browser, node cannot be used internally, so there is no require method. This section mainly introduces the common use of vite, including css, ts, env environment variables and import Meta and other functions.CSS processingBasic useIndex. Is added in src directory css@import url('@styles/other ...

Added by iHack on Thu, 27 Jan 2022 09:56:56 +0200

vite + vue3 + ts Usage Summary

At this stage, the use of vite + ts in the development of vue3 projects should have become a standard paradigm. The new syntax experience vue composition api is combined with script setup. Who knows? In terms of development and construction, vite, as a next-generation construction tool, must be understood by everyone. Using ES6 module + ESbuild ...

Added by miro_igov on Mon, 17 Jan 2022 14:52:45 +0200

Vue3 antd admin management background framework

prefaceVue3 antd admin is a background front-end solution, which is implemented based on vue3 and antd UI. It uses the latest front-end technology stack and integrates basic functions such as dynamic routing, authentication login and menu management. On this basis, it optimizes the style and solves the ignored problems such as no scrolling and ...

Added by laPistola on Mon, 10 Jan 2022 05:56:57 +0200

Secondary encapsulation of element plus business components based on Vue3+Vite+TS

Secondary encapsulation of element plus business components based on Vue3+Vite+TSWhy return a unified canonical format for SpringBootUnder the condition of acquiescence, there are three common return formats of SpringBoot:First: return String@GetMapping("/hello")public String getStr(){ return "hello,javadaily";}downloadCopy codeAt this time, t ...

Added by loony383 on Wed, 05 Jan 2022 13:15:25 +0200

Creating vue3 project templates using vite

When you want to create a vue project independently and have no way to start, such a project can solve this problem. It contains the basic project directory, classified by folder and improve efficiency. So start creating our project! We use vite to create projects, which is faster npm install -g create-vite-app //Install global create vite a ...

Added by justinede on Mon, 27 Dec 2021 09:18:30 +0200