This commit is contained in:
熊潇 2025-08-12 21:37:10 +08:00
parent ad5d79e983
commit b4ec7be17a
2 changed files with 8 additions and 1 deletions

View File

@ -0,0 +1,5 @@
export const getTest = () => {
return {
"a": 1
}
}

View File

@ -1,7 +1,9 @@
--- ---
import {getTest} from '../apps/get.ts';
const data = await getTest();
--- ---
<div> <div>
hello world hello world
{JSON.stringify(data)}
</div> </div>