Skip to main content
Module

x/aleph/runtime/vue/mod.ts

The Full-stack Framework in Deno.
Very Popular
Go to Latest
File
import { createApp } from "./router.ts";
export function bootstrap(options?: { root?: string | HTMLElement; hydrate?: boolean }) { const { root = "#root", hydrate = !!document.head.querySelector("script#ssr-data") } = options ?? {}; createApp().mount(root, hydrate);}
export { useData } from "./data.ts";export { useRouter } from "./router.ts";export { Link } from "./link.ts";export { Head } from "./head.ts";