svelte-calendar-resurrected
Version:
A simple svelte calendar component. Forked from svelte-calendar
16 lines (14 loc) • 820 B
HTML
<h2 id="svelte-calendar-resurrected">svelte-calendar-resurrected</h2>
<p>A simple svelte calendar component. Forked from <a href="https://github.com/6eDesign/svelte-calendar">6eDesign/svelte-calendar</a>.</p>
<p>Demos and documentation located at the project's <a href="https://phaqui.github.io/svelte-calendar-resurrected/">githubio page</a>.</p>
<p>For source and development info, go to the repo at <a href="https://github.com/phaqui/svelte-calendar-resurrected">github</a>.</p>
<h2 id="quickstart">Quickstart</h2>
<p>In your Svelte project, simply install...</p>
<pre><code class="language-sh">npm i -D svelte-calendar
</code></pre>
<p>...and start using!</p>
<pre><code class="language-html"><script>
import Datepicker from 'svelte-calendar';
</script>
<Datepicker />
</code></pre>