globalTools.ts 391 B

1234567891011121314151617
  1. import { ref } from "vue"
  2. /** 工具栏状态 */
  3. export const toolOpen = ref(false)
  4. // 批注
  5. export const penShow = ref(false)
  6. // 白板
  7. export const whitePenShow = ref(false)
  8. // 是否正在播放
  9. export const isPlay = ref(false)
  10. // 是否隐藏
  11. export const isHidden = ref(true)
  12. /** 是否隐藏工具栏 */
  13. export const handleHidden = (status = true) => {
  14. isHidden.value = status
  15. }