Jiruu
Hello,
In the Vue component it comes as props
<script>
export default {
/* ... */
props: {
waitingAction: Boolean,
blockPlayerInput: Boolean
},
/* ... */
}
</script>
and in the React component it also comes as props:
interface Props {
waitingAction: boolean,
blockPlayerInput: boolean
}
export default function SomeGUI({ waitingAction, blockPlayerInput }: Props) {
}