@gravito/ion
v2.0.0
Published
Inertia.js adapter for Gravito
Maintainers
Readme
Orbit Inertia
Gravito 的 Inertia.js 轉接器,可用 React/Vue 建立現代化單體應用。
安裝
bun add @gravito/ion快速開始
import { OrbitIon } from '@gravito/ion'
import { OrbitPrism } from '@gravito/prism'
const config = defineConfig({
orbits: [OrbitPrism, OrbitIon],
})import { Context } from '@gravito/photon'
import { InertiaService } from '@gravito/ion'
export class HomeController {
index = async (c: Context) => {
const inertia = c.get('inertia') as InertiaService
return inertia.render('Home', {
user: 'Carl',
stats: { visits: 100 }
})
}
}