Vue.component("more-options-angle", { data: function () { return { isVisible: false } }, methods: { show: function () { this.isVisible = !this.isVisible this.$emit("change", this.isVisible) } }, template: `更多选项收起选项` })