Vue.component("more-options-tbody", { data: function () { return { isVisible: false } }, methods: { show: function () { this.isVisible = !this.isVisible this.$emit("change", this.isVisible) } }, template: `