/** * 更多选项 */ Vue.component("more-options-indicator", { data: function () { return { visible: false }; }, methods: { changeVisible: function () { this.visible = !this.visible; if (Tea.Vue != null) { Tea.Vue.moreOptionsVisible = this.visible; } } }, template: '更多选项收起选项 ' });