svelte-bootstrap-examples Svelte Themes

Svelte Bootstrap Examples

svelte bootstrap examples

Svelte Bootstrap

  1. install libraries
npm install [email protected]
npm install @types/bootstrap
npm i @popperjs/core
  1. Add bootstrap css to app.html head:
<link
    href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
    rel="stylesheet"
    integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD"
    crossorigin="anonymous"
/>
  1. import bootstrap in the svelte file:
<script type="module">
    import * as bootstrap from 'bootstrap';
</script>

Top categories

Loading Svelte Themes