From 7ec538ce159e401f2a9cf408b1c359626af7865a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=BD=E9=9B=81=E6=B2=99?= Date: Sat, 28 Jun 2025 11:40:40 +0800 Subject: [PATCH 1/3] feat: readme --- .github/workflows/gh-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 19add57..c10f332 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -22,4 +22,4 @@ jobs: deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} # github_token: ${{ secrets.GITHUB_TOKEN }} # 文档目录,如果是 react 模板需要修改为 docs-dist - publish_dir: ./examples/basic/build + publish_dir: ./examples/basic/dist From 2f016e2a2dfc10a4e17a1c66a376a51a50d66137 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=BD=E9=9B=81=E6=B2=99?= Date: Sat, 28 Jun 2025 14:25:11 +0800 Subject: [PATCH 2/3] feat: readme --- examples/basic/src/App.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/basic/src/App.tsx b/examples/basic/src/App.tsx index 1c260c3..e55dccb 100644 --- a/examples/basic/src/App.tsx +++ b/examples/basic/src/App.tsx @@ -125,6 +125,9 @@ function App() { /> )} + + {(tree) =>
} +
{(tree) => } From 5162c46c2f13fbe5ef2b737bcbd66e1a61c50760 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=BD=E9=9B=81=E6=B2=99?= Date: Sat, 28 Jun 2025 14:31:59 +0800 Subject: [PATCH 3/3] feat: readme --- examples/basic/vite.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/basic/vite.config.ts b/examples/basic/vite.config.ts index 861b04b..7e836da 100644 --- a/examples/basic/vite.config.ts +++ b/examples/basic/vite.config.ts @@ -4,4 +4,5 @@ import react from '@vitejs/plugin-react-swc' // https://vitejs.dev/config/ export default defineConfig({ plugins: [react()], + base: '/triones-designable/', })