vite-plugin-svelte-kebab-props
v1.0.3
Published
Vite 2.x plugin to support kebab case props within Svelte components.
Downloads
4,442
Maintainers
Readme
vite-plugin-svelte-kebab-props
Vite 2.x plugin to support kebab case props within Svelte components.
<!-- $lib/components/MyImage.svelte -->
<script lang="ts">
export let thisIsMyPicture: string = '';
</script>
<img src={thisIsMyPicture} alt="alt-pic" />
<!-- index.svelte -->
<script lang="ts">
import MyImage from '$lib/components/MyImage.svelte';
const cat = 'https://icatcare.org/app/uploads/2018/07/Thinking-of-getting-a-cat.png';
</script>
<MyImage this-is-my-picture={cat} />
Additionally, it works with reactive variables.
<!-- $lib/components/MyText.svelte -->
<script lang="ts">
export let thisIsMyText: string = '';
</script>
<div>{thisIsMyText}</div>
<!-- index.svelte -->
<script>
import MyText from '$lib/components/MyText.svelte';
let text = 'some text';
$: {
setInterval(() => {
text = Date.now().toString();
}, 3000);
}
</script>
<MyText this-is-my-text={text} />
Install
Yarn
yarn add --dev vite-plugin-svelte-kebab-props
NPM
npm install vite-plugin-svelte-kebab-props --save-dev
pnpm
pnpm add -D vite-plugin-svelte-kebab-props
Setup
svelte.config.cjs
import preprocess from 'svelte-preprocess';
import svelteKebabProps from 'vite-plugin-svelte-kebab-props';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: [preprocess()],
kit: {
target: '#svelte',
vite: {
plugins: [svelteKebabProps()]
}
}
};
export default config;
License
MIT