Created
March 15, 2023 12:03
-
-
Save eclectic-coding/8ec42ff3b5cf07eec4a9e0ce95c0c25f to your computer and use it in GitHub Desktop.
Show Bootstrap 5 Toast from Stimulus controller
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Controller } from "@hotwired/stimulus"; | |
import * as bootstrap from "bootstrap"; | |
export default class extends Controller { | |
connect() { | |
new bootstrap.Toast(this.element).show(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment