Sha256: bc113261ce8272fda8aaaeddb08a7985b32dd4c36ccc883c89532b3dc4d12408
Contents?: true
Size: 267 Bytes
Versions: 9
Compression:
Stored size: 267 Bytes
Contents
import { Controller } from '@hotwired/stimulus' export default class extends Controller { static targets = ['output'] typed(event) { this.text = event.currentTarget.value this.render() } render() { this.outputTarget.innerText = this.text } }
Version data entries
9 entries across 7 versions & 1 rubygems