CRUD for domains & playing with symfony stimulus

This commit is contained in:
2023-10-14 03:15:46 -06:00
parent 3ed53ac05e
commit 39e94d8bdc
13 changed files with 622 additions and 368 deletions
@@ -11,6 +11,11 @@ import { Controller } from '@hotwired/stimulus';
*/
export default class extends Controller {
connect() {
this.element.textContent = 'Hello Stimulus! Edit me in assets/controllers/hello_controller.js';
//this.element.textContent = 'Hello Stimulus! Edit me in assets/controllers/domains_controller.js';
}
static targets = ['name', 'output']
greet() {
this.outputTarget.textContent = `Hello, ${this.nameTarget.value}!`
}
}