Skip to content

Commit

Permalink
@chore update doc link
Browse files Browse the repository at this point in the history
  • Loading branch information
foolishchow committed Aug 15, 2024
1 parent 4154a74 commit d6a661a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

- vue3 + element-plus ( alpha )
<p>
<a href="https://foolishchow.gitee.io/vform/element/">Online Documents</a>
<a href="https://foolishchow.github.io/vform/element/">Online Documents</a>
<a href="https://www.npmjs.com/package/vform-element">
<img src="https://img.shields.io/npm/v/vform-element.svg" alt="Version">
</a>
Expand All @@ -17,7 +17,7 @@
</p>
- vue3 + ant-design-vue ( alpha )
<p>
<a href="https://foolishchow.gitee.io/vform/ant-design/">Online Documents</a>
<a href="https://foolishchow.github.io/vform/ant-design/">Online Documents</a>
<a href="https://www.npmjs.com/package/vform-ant-design">
<img src="https://img.shields.io/npm/v/vform-ant-design.svg" alt="Version">
</a>
Expand All @@ -30,6 +30,6 @@

## documents

- [vform-element](https://foolishchow.gitee.io/vform/element/)
- [vform-ant-design](https://foolishchow.gitee.io/vform/ant-design/)
- [vform-element](https://foolishchow.github.io/vform/element/)
- [vform-ant-design](https://foolishchow.github.io/vform/ant-design/)

2 changes: 1 addition & 1 deletion ant-design/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# vform-ant-design

[document](https://foolishchow.gitee.io/vform/ant-design/)
[document](https://foolishchow.github.io/vform/ant-design/)


> 基于 Vue3 和 ant-design-vue 的动态表单组件
Expand Down
6 changes: 3 additions & 3 deletions ant-design/docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ export const config: UserConfig<DefaultTheme.Config> = {
},
{
text: 'ElementPlus版本',
link: 'https://foolishchow.gitee.io/vform/element/',
link: 'https://foolishchow.github.io/vform/element/',
},
],
},

vite: {
// @ts-ignore
ssr:{
noExternal:['ant-design-vue','lodash-es']
ssr: {
noExternal: ['ant-design-vue', 'lodash-es']
},
server: {
port: 7002,
Expand Down
2 changes: 1 addition & 1 deletion element/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

基于 Vue3 和 Element-plus 的动态表单组件

[document](https://foolishchow.gitee.io/vform/element/)
[document](https://foolishchow.github.io/vform/element/)

## 设计的初衷
动态表单其实并没有改变什么,却又改变了些什么
Expand Down
12 changes: 6 additions & 6 deletions element/docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { MarkdownItLiveDemo,VitePluginLiveDemo} from 'vitepress-live-demo';
import { MarkdownItLiveDemo, VitePluginLiveDemo } from 'vitepress-live-demo';
import { UserConfig } from 'vitepress';
import type { DefaultTheme } from 'vitepress/types/default-theme'
import markdownItCheckbox from 'markdown-it-checkbox';
Expand Down Expand Up @@ -26,7 +26,7 @@ export const config: UserConfig<DefaultTheme.Config> = {
// sidebar: false,
sidebar: {
api: ApiNavBar,
guide:GuideNavBar
guide: GuideNavBar
},
nav: [
{ text: '首页', link: '/' },
Expand All @@ -38,15 +38,15 @@ export const config: UserConfig<DefaultTheme.Config> = {
},
{
text: 'AntDesignVue版本',
link: 'https://foolishchow.gitee.io/vform/ant-design/',
link: 'https://foolishchow.github.io/vform/ant-design/',
},
],
},

vite: {
// @ts-ignore
ssr:{
noExternal:['ant-design-vue','lodash-es']
ssr: {
noExternal: ['ant-design-vue', 'lodash-es']
},
server: {
port: 7001,
Expand All @@ -65,7 +65,7 @@ export const config: UserConfig<DefaultTheme.Config> = {
},
plugins: [
vueJsx(),
VitePluginLiveDemo({lineNumber:true,demos:[]})
VitePluginLiveDemo({ lineNumber: true, demos: [] })
]
}
};
Expand Down

0 comments on commit d6a661a

Please sign in to comment.