Building a Vue Admin Dashboard with TypeScript and Element UI
The foundation of this application relies on a centralized layout structure located within the src/layout directory. This pattern organizes the shell of the application separately from the core business logic, allowing for a modular design.
The recommended directory structure for the layout module is as follows:
src/
└── layout/
├── compone ...
Posted on Thu, 18 Jun 2026 18:07:19 +0000 by neofox
Integrating Django, Vue, Axios, CORS, and Global Settings in a Full-Stack Project
Backend Setup with Django
Internationalization & Timezone
# d_prj/settings.py
LANGUAGE_CODE = 'zh-hans'
TIME_ZONE = 'Asia/Shanghai'
USE_TZ = False
Frontend HTTP Client: Axios
Installation & Global Registration
# v-proj/src/main.js
import axios from 'axios'
Vue.prototype.$http = axios
Sample GET Request inapting to Vue Lifecycle
// v-p ...
Posted on Fri, 22 May 2026 22:54:09 +0000 by andycastle
Leaf-Only Multi-Selection for Cascader Components in Element UI
Building upon Element UI 2.15.14, this customization introduces a specialized multi-selection mode that restricts selection to terminal nodes only. This enhancement is particularly useful for hierarchical data structures where intermediate nodes serve purely as containers.
Installation
Install the extended package via npm:
npm install @corp/ele ...
Posted on Fri, 08 May 2026 00:44:45 +0000 by mayanktalwar1988