2.0.0 • Published 2 years ago

ember-gtm v2.0.0

Weekly downloads
2
License
MIT
Repository
-
Last release
2 years ago

ember-gtm

Ember addon for integrating Google Tag Manager

Compatibility

  • Ember.js v3.12 or above
  • Ember CLI v2.13 or above
  • Node.js v10 or above

Installation

ember install ember-gtm

Usage

All that's required is setting the GTM key in your config/environment.js file.

// config/environment.js

ENV['ember-gtm'] = {
  appId: '[YOUR_APP_ID]'
};

Then you can use the gtm service freely.

@service gtm;

@action
someAction() {
  const data = {
    something: "for the dataLayer"
  };
  this.gtm.trackGTM(data);
}

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.