Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

17 Zeilen
490B

  1. import { Controller } from 'stimulus';
  2. /*
  3. * This is an example Stimulus controller!
  4. *
  5. * Any element with a data-controller="hello" attribute will cause
  6. * this controller to be executed. The name "hello" comes from the filename:
  7. * hello_controller.js -> "hello"
  8. *
  9. * Delete this file or adapt it for your use!
  10. */
  11. export default class extends Controller {
  12. connect() {
  13. this.element.textContent = 'Hello Stimulus! Edit me in assets/controllers/hello_controller.js';
  14. }
  15. }