/*jslint es6: true, this: true*/ /*global window, Vue*/ (function () { "use strict"; Vue.component("logging-settings", { props: ["shouldLog"], template: `
`, methods: { shouldLogChanged: function () { this.$root.$data.setShouldLog(this.shouldLog); } } }); }());