Building a Vue 3 Admin Panel: Setup and Configuration
This project utilizes Vue 3, TypeScript, Vue Router, Pinia, Element Plus, Axios, and ECharts.
Project Initialization
This guide covers the process of setting up a Vue 3-based admin management system from scratch. Establishing consistent project standards is crucial. We'll integrate ESLint, Stylelint, and Prettier for code quality checks and aut ...
Posted on Sat, 18 Jul 2026 16:04:45 +0000 by ghost007
Building a Vue.js Project from Scratch with Webpack 5
This guide walks through manually configuring a Vue.js application using Webpack 5—bypassing vue-cli to gain deeper insight into the underlying toolchain. The setup targets modern development workflows, emphasizing modularity, performance, and maintainability.
Core Webpack Configuration
Webpack 5 introduces built-in asset modules and drops lega ...
Posted on Mon, 29 Jun 2026 17:03:47 +0000 by stephenk
Vue 3 Project Setup and Configuration Guide
Project Initialization with pnpm
Some advantages: approximately 2x faster than similar tools, saves disk space...
https://www.pnpm.cn/
Installation:
npm install -g pnpm
Creating a project:
pnpm create vue
ESLint & Prettier Configuration
Environment Synchronization:
Install the ESLint plugin and enable auto-fix on save
Disable the ...
Posted on Fri, 08 May 2026 19:33:46 +0000 by cuboidgraphix