UNPKG

@stimulus-library/controllers

Version:

A library of useful controllers for Stimulus

8 lines (7 loc) 218 B
import { BaseController } from "@stimulus-library/utilities"; export class AlertController extends BaseController { alert() { alert(this.messageValue); } } AlertController.values = { message: String };