rails8-memoapp/app/javascript/controllers/memo_form_controller.js
2025-02-20 22:46:52 +09:00

11 lines
221 B
JavaScript

import { Controller } from "@hotwired/stimulus";
export default class extends Controller {
static targets = ["textarea"];
connect() {
if (this.hasTextareaTarget) {
this.textareaTarget.focus();
}
}
}