You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
349 B

10 months ago
  1. export default {
  2. methods: {
  3. // 关闭时执行
  4. closeHandler() {
  5. this.status = 'close'
  6. },
  7. setState(status) {
  8. this.status = status
  9. },
  10. closeOther() {
  11. // 尝试关闭其他打开的单元格
  12. this.parent && this.parent.closeOther(this)
  13. }
  14. }
  15. }