(function () { "use strict"; const Vue = window.Vue; Vue.component("logging-settings", { props: ["shouldLog"], template: `
`, methods: { shouldLogChanged: function () { this.$root.$data.setShouldLog(this.shouldLog); } } }); }());