An open API service indexing awesome lists of open source software.

https://github.com/reecem/svelte-slicezone

SvelteKit Slicezone handler for Prismic SliceMachine
https://github.com/reecem/svelte-slicezone

prismicio slicemachine slicezone sveltekit

Last synced: 11 months ago
JSON representation

SvelteKit Slicezone handler for Prismic SliceMachine

Awesome Lists containing this project

README

          

# Svelte Slicezone

This is a slice zone component for Prismic.

The current component makes the current assumptions:

There is a document that is passed that has a `slices` key:

```js
{
// other keys
slices: []
}
```

To use the SliceZone and resolver.

```html

import { SliceZone, SliceResolver } from '@reecem/svelte-slicezone';

// Load the index listing of slices.
import * as Slices from '$lib/slices';
// this is the list of slices to provide.
// you can add others from other libs
const allSlices = { ...Slices, /** ...anotherList */ };

```