svelte-tab Svelte Themes

Svelte Tab

Tab based component using svelte js

Svelte Tab

Demo

click here

How to use

Copy the code in src src/Tab.svelte and create a component in your app and paste it and then to use the tab

import the tab component and your any component and wrap the component like this

<Tab component={Component} label="Tab" />

Full Code

<script>
    import Tab from "./Tab.svelte";
    import Component from "./Sample.svelte";
</script>


<Tab component={Component} label="Tab" />

Top categories

Loading Svelte Themes