我们可以删除一些不需要的内容来完成对本系统体积的精简,这里我对每个模块需要删除的部分都列出来

视频播放组件

删除依赖包

1
pnpm uninstall artplayer

删除 /src/components/Custom/VideoPlayer.vue

1
rm -rf /src/components/Custom/VideoPlayer.vue

删除 /src/views/customComponents/player.vue

1
rm -rf /src/views/customComponents/player.vue

删除 /router/modules/customComponents.ts 中的 videoPlayer 部分

1
2
3
4
5
6
{
path: 'videoPlayer',
name: 'components.videoPlayer',
component: () => import('@/views/customComponents/player.vue'),
meta: { auth: true, menu: { title: '视频播放器' } },
}

markdown 编辑器

删除依赖包

1

删除

富文本编辑器

删除依赖包

1

二维码组建

删除依赖包

1

拖拽组建

删除依赖包

1