In the following vue.js example, if the value of myBool is null, checkbox doesn't return N.
<input v-model="myBool" true-value="Y" false-value="N" type="checkbox">
However, if I set myBool to false, checkbox returns N. How can I get the value N even though myBool is null?
I don't want to manually check the return value of the checkbox, then add a logic to make it false. Is there any better way to get the N value when myBool is null?