const inits = this.$el.querySelectorAll('[ga-init]');
inits.forEach(elem => {
elem.removeAttribute('ga-init');
elem.removeAttribute('data-ga');
});
const children = this.$children;
children.forEach(elem => {
elem.$el.removeAttribute('ga-init');
elem.$el.removeAttribute('data-ga');
});