Astro Integration
Integrate with Astro
Using Script Tag
---
---
<html>
<head>
<title>Hello World</title>
</head>
<body>
<div id="app"></div>
<script>
import { render } from '@weblabsjs/core'
import { p } from '@weblabsjs/core/components'
render("app", p("Hello world from Weblabs"))
</script>
</body>
</html>Using External Codebase
Last updated