UNPKG

create-vanjs

Version:

🍦 Quick tool for scaffolding your first VanJS project

21 lines (16 loc) 421 B
import van from "vanjs-core"; import { Meta, Title } from "@vanjs/meta"; import Counter from "../../components/Counter"; export const route = {}; export const Page = () => { const { div, h1, p } = van.tags; Title("VanJS + Vite Homepage"); Meta({ name: "description", content: "Home description" }); return [ div( h1("Hello VanJS!"), p("This is the homepage."), Counter(), ), ]; };