Frontends
Svelte
Edit on GitHubThis handler module supports SSR and hydration and serves Svelte components
with the .svelte
extension.
Install
npm install @primate/svelte
Configure
Import and initialize the module in your configuration.
import svelte from "@primate/svelte";
export default {
modules: [
svelte(),
],
};
Use
Create a Svelte component in components
.
<script>
export let posts;
</script>
<h1>All posts</h1>
{#each posts as { id, title }}
<h2><a href="/post/{id}">{title}</a></h2>
{/each}
<style>
button {
border-radius: 4px;
background-color: #5ca1e1;
border: none;
color: #fff;
display: block;
}
</style>
Serve it from a route.
import view from "primate/handler/view";
const posts = [{
id: 1,
title: "First post",
}];
export default {
get() {
return view("PostIndex.svelte", { posts });
},
};
The rendered component will be accessible at http://localhost:6161/svelte.
Configuration options
extension
Default ".svelte"
The file extension associated with Svelte components.
spa
Default true
Whether SPA browsing using fetch
should be active.