Skip to content

Instantly share code, notes, and snippets.

@eclectic-coding
Created March 15, 2023 12:03
Show Gist options
  • Save eclectic-coding/8ec42ff3b5cf07eec4a9e0ce95c0c25f to your computer and use it in GitHub Desktop.
Save eclectic-coding/8ec42ff3b5cf07eec4a9e0ce95c0c25f to your computer and use it in GitHub Desktop.
Show Bootstrap 5 Toast from Stimulus controller
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