Skip to content

替换为 Ant Design Vue

由于框架默认使用的是 Element Plus 组件库,并且演示源码中大量示例也使用了 Element Plus,如果你需要使用 Ant Design Vue,请拉取框架源码分支,或者到 Github Releases 页面下载框架源码压缩包。

专业版用户也同样,请到专业版仓库下载框架源码。

安装

sh
# 安装依赖
pnpm install

# 安装 Ant Design Vue
pnpm add [email protected]

代码调整

基础版

修改 /tsconfig.json 文件

json
{
  "compilerOptions": {
    ...
    "types": [
      ...
      "element-plus/global"
    ],
    ...
  }
}

整体修改 /src/ui/provider/index.ts 文件

ts
import type { App } from 'vue'
import Antd from 'ant-design-vue'
import 'ant-design-vue/dist/reset.css'

function install(app: App) {
  app.use(Antd)
}

export default { install }

整体修改 /src/ui/provider/index.vue 文件

vue
<script setup lang="ts">
import useSettingsStore from '@/store/modules/settings'
import { theme } from 'ant-design-vue'
import antDesignVueLocaleZhCN from 'ant-design-vue/es/locale/zh_CN'

const settingsStore = useSettingsStore()

const themeConfig = computed(() => ({
  algorithm: settingsStore.currentColorScheme === 'dark' ? [theme.darkAlgorithm] : [theme.defaultAlgorithm],
}))
</script>

<template>
  <AConfigProvider :locale="antDesignVueLocaleZhCN" :theme="themeConfig">
    <slot />
  </AConfigProvider>
</template>

删除相关文件

.
└─ src
   └─ components // 下列扩展组件基于 Element Plus 二次封装,需要删除
     ├─ FileUpload
     ├─ ImagePreview
     ├─ ImagesUpload
     └─ ImageUpload
专业版

修改 /tsconfig.json 文件

json
{
  "compilerOptions": {
    ...
    "types": [
      ...
      "element-plus/global"
    ],
    ...
  }
}

整体修改 /src/ui/provider/index.ts 文件

ts
import type { App } from 'vue'
import Antd from 'ant-design-vue'
import 'ant-design-vue/dist/reset.css'

import zhCN from 'ant-design-vue/es/locale/zh_CN'
import zhTW from 'ant-design-vue/es/locale/zh_TW'
import en from 'ant-design-vue/es/locale/en_US'

function install(app: App) {
  app.use(Antd)
}

// 此处的对象属性和 src/locales/index.ts 中的 messages 对象属性一一对应
const locales: Record<string, any> = {
  'zh-cn': zhCN,
  'zh-tw': zhTW,
  'en': en,
}

export default { install }
export { locales }

整体修改 /src/ui/provider/index.vue 文件

vue
<script setup lang="ts">
import useSettingsStore from '@/store/modules/settings'
import { theme } from 'ant-design-vue'
import { locales } from './index'

const settingsStore = useSettingsStore()

const themeConfig = computed(() => ({
  algorithm: settingsStore.currentColorScheme === 'dark' ? [theme.darkAlgorithm] : [theme.defaultAlgorithm],
}))
</script>

<template>
  <AConfigProvider :locale="locales[settingsStore.lang]" :theme="themeConfig">
    <slot />
  </AConfigProvider>
</template>

删除相关文件

.
├─ plop-templates
│  └─ module // 标准模块模板基于 Element Plus 开发,需要删除
└─ src
   └─ components // 下列扩展组件基于 Element Plus 二次封装,需要删除
     ├─ FileUpload
     ├─ ImagePreview
     ├─ ImagesUpload
     ├─ ImageUpload
     └─ PcasCascader

卸载

sh
# 卸载 Element Plus
pnpm remove element-plus

完成

至此,你已经将框架中的 Element Plus 组件库替换为 Ant Design Vue 组件库,并且可以开始使用 Ant Design Vue 进行业务开发了。

示例

如果对上述的步骤还有不清楚的地方,可以访问此仓库查看示例源码,以及此链接查看示例网站。