diff --git a/docs/wujie/components/data.ts b/docs/wujie/components/data.ts index a24c3d735..cff01baec 100644 --- a/docs/wujie/components/data.ts +++ b/docs/wujie/components/data.ts @@ -1,15 +1,15 @@ export const wujieList = [ { - name: "UmiJS", - url: "https://umijs.org/", + name: "无极", + url: "https://wujicode.cn/xy/app/prod/official/index", }, { - name: "TurboRepo", - url: "https://turborepo.org/docs/getting-started", + name: "UmiJS", + url: "https://umijs.org/", }, { name: "React", - url: "https://reactjs.org/", + url: "https://beta.reactjs.org/", }, { name: "Vercel", @@ -27,11 +27,6 @@ export const wujieList = [ name: "AntDesign", url: "https://ant.design/components/drawer-cn/", }, - - { - name: "AntV", - url: "https://g2.antv.vision/zh", - }, { name: "NaiveUI", url: "https://www.naiveui.com/zh-CN/os-theme/components/button", diff --git a/docs/wujie/components/wujie-connect.vue b/docs/wujie/components/wujie-connect.vue index 4e67c0cbe..eb6031ce4 100644 --- a/docs/wujie/components/wujie-connect.vue +++ b/docs/wujie/components/wujie-connect.vue @@ -17,7 +17,7 @@ const props = defineProps<{ watch( () => props.baseUrl, (newValue) => { - url.value = newValue; + url.value = newValue!; } ); @@ -41,7 +41,7 @@ watch(

- 您可以输入一个允许跨域访问的https协议网站来在线体验无界 + 您可以输入一个允许跨域访问的 https 协议网站来在线体验 无界

diff --git a/docs/wujie/components/wujie-online.vue b/docs/wujie/components/wujie-online.vue index d09092bce..d098863d8 100644 --- a/docs/wujie/components/wujie-online.vue +++ b/docs/wujie/components/wujie-online.vue @@ -16,8 +16,8 @@ const wujieUrl = ref("https://wujicode.cn/xy/app/prod/official/index"); watch( () => props.flag, - (newValue) => { - wujieUrl.value = props.url; + () => { + wujieUrl.value = props.url!; } );