mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Update optimize.md
For some weird reason, using "Exports" as the callout header leads to TypeError coming from clipboard.js
This commit is contained in:
parent
480561c64b
commit
4fca7ddd73
1 changed files with 4 additions and 3 deletions
|
@ -40,14 +40,15 @@ import 'bootstrap/js/dist/modal';
|
|||
This way, you're not including any JavaScript you don't intend to use for components like buttons, carousels, and tooltips. If you're importing dropdowns, tooltips or popovers, be sure to list the Popper.js dependency in your `package.json` file.
|
||||
|
||||
{{< callout info >}}
|
||||
### Exports
|
||||
### Default Exports
|
||||
|
||||
Files in `bootstrap/js/dist` use the **default export**, so if you want to use one of them you have to do the following:
|
||||
|
||||
{{< highlight js >}}
|
||||
```js
|
||||
import Modal from 'bootstrap/js/dist/modal'
|
||||
|
||||
const modal = new Modal(document.getElementById('myModal'))
|
||||
{{< /highlight >}}
|
||||
```
|
||||
{{< /callout >}}
|
||||
|
||||
## Autoprefixer .browserslistrc
|
||||
|
|
Loading…
Add table
Reference in a new issue