import { Controller } from '@hotwired/stimulus'; export default class extends Controller { static targets = ['fields', 'template']; static values = { token: { type: String, default: '__INDEX__', }, }; append() { this.fieldsTarget.insertAdjacentHTML('beforeend', this.#templateContent); } get #templateContent() { return this.templateTarget.innerHTML.replaceAll(this.tokenValue, Date.now()); } }

AltStyle によって変換されたページ (->オリジナル) /