This commit is contained in:
2025-03-04 22:57:46 +08:00
parent fd3288cb5b
commit 4a04a432ca
39 changed files with 1062 additions and 671 deletions

View File

@@ -1,4 +1,5 @@
import { app, page, load } from './app';
import '../src/routes';
import './ai-app/main';
import './tailwind.css';
import './workspace/entry';
@@ -8,6 +9,7 @@ page.addPage('/', 'workspace');
const runLoad = () => {
load.load(
() => {
console.log('runLoad');
// @TODO 这里需要优化,不能每次都去调用
page.subscribe(
'workspace',
@@ -36,4 +38,4 @@ const runLoad = () => {
);
};
// runLoad()
runLoad()