Files
fizzy/app/javascript/controllers/dialog_controller.js
T
2024-07-24 10:07:11 -05:00

10 lines
175 B
JavaScript

import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
static targets = [ "dialog" ]
open() {
this.dialogTarget.showModal()
}
}