14 lines
289 B
JavaScript
14 lines
289 B
JavaScript
import { Controller } from '@hotwired/stimulus';
|
|
|
|
export default class extends Controller {
|
|
static values = {
|
|
payload: Object
|
|
};
|
|
|
|
connect() {
|
|
if (typeof window.dataLayer !== 'undefined') {
|
|
window.dataLayer.push(this.payloadValue);
|
|
}
|
|
}
|
|
}
|