If I remove the v-model attribute, checked works.
<input type="radio" name="sign" value="+" v-model="sumType" checked="checked"> Addition
<input type="radio" name="sign" value="-" v-model="sumType"> Subtraction
How do I default check a radio button that has a vue js model attribute?