:kissing_heart:A unified template used to backend management built on Vue3.x + Vite + Ant Design Vue + Vite. :heart: Makeit Admin Pro,是基于 Vue3.x + Vite + Ant Design Vue 组件库开发的一套适合中后台管理项目的统一 UI 框架,包含页面布局 / 注册 / 登录 / 验证码等常用模块,npm 安装,开箱即用。持续开发更新中 ...
This article introduces a unified template for backend management systems. It is built using Vue3.x, Vite4.x, and Ant Design Vue. The template includes common modules such as page layouts, registration, login, forgot password, slider captcha, search suggestions, dynamic menu configuration, and permission management. The goal of this template is to simplify the process of building basic pages in backend management projects and allow developers to focus more on business development.
To install the template, follow these steps:
Install the required dependencies:
npm install
Add the required packages to your project:
npm install vue3.x vite4.x ant-design-vue axios vue-router vuex vue-i18n
Import the template into your project:
import { createApp } from 'vue';
import App from './App.vue';
import Antd from 'ant-design-vue';
import 'ant-design-vue/dist/antd.css';
const app = createApp(App);
app.use(Antd);
app.mount('#app');
Customize the template to fit your project requirements.
The article introduces a unified template for backend management systems built using Vue3.x, Vite4.x, and Ant Design Vue. It includes various features such as a unified page layout, registration and login modules, dynamic menu configuration, and permission management. The template aims to simplify the development process and allow developers to focus on business logic rather than basic page construction.