UNPKG

cheetah-framework

Version:

Cheetah Framework JS used in all our applications

28 lines (24 loc) 408 B
import dataStore from '@cheetah/store/dataStore' export default { props: { keyCode: { type: String, required: true }, tooltipMessage: { type: String, default: null }, hideLabel: Boolean, disabled: Boolean, size: { type: String, default: 'mini' } }, computed: { hasData () { return dataStore.has(this.keyCode) } } }