IsButtons.js 177 B

12345678
  1. import { useAppStore } from '~src/store'
  2. const useAppState = useAppStore()
  3. //是否显示
  4. export const HcIsButton = (value) => {
  5. return useAppState.getButtonsVal(value)
  6. }