Docs
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 4s

This commit is contained in:
2026-05-02 00:37:15 +02:00
parent f3fb26354c
commit 820d55b012
6 changed files with 9 additions and 9 deletions

View File

@@ -51,11 +51,11 @@ Thanks to **SigPro's synchronous initialization**, you no longer need to wrap yo
```javascript
// src/main.js
import SigPro from 'sigpro';
import { mount, router } from 'sigpro';
import { routes } from 'virtual:sigpro-routes';
// The Core already has Router ready
Mount(Router(routes), '#app');
mount(router(routes), '#app');
```
</div>