Fix syntax error.

This commit is contained in:
bmauger 2021-12-10 09:36:06 -05:00
parent 2819f47b94
commit e31592e885

View file

@ -28,19 +28,7 @@ export default {
watch: {
selectedYear(val) {
this.$emit("update:modelValue", val);
},
props: {
questionText: String,
years: Array,
modelValue: String
},
components: {
radioQuestion,
},
watch: {
selectedYear(val) {
this.$emit('update:modelValue', val)
}
}
},
};
</script>