Install

Terminal
$ roq add web:svelte

Usage

Add Svelte component support to your Roq project. Build interactive UI components with Svelte's reactive framework and embed them in your static pages.

Getting started

Create .svelte files in your web/ directory:

<!-- web/components/Counter.svelte -->
<script>
  let count = 0;
</script>

<button on:click={() => count++}>
  Clicks: {count}
</button>

Then mount the component in your templates using Web Bundler's script injection.