Merge two sets of props in form mixin vue component

This commit is contained in:
leigh-mil 2019-07-18 14:57:50 -04:00
parent 04d6672c0c
commit 90b057d0b2

View File

@ -1,6 +1,10 @@
export default { export default {
props: { props: {
initialSelectedSection: String, initialSelectedSection: String,
hasChanges: {
type: Boolean,
default: false,
},
}, },
mounted: function() { mounted: function() {
@ -63,11 +67,4 @@ export default {
invalid: true, invalid: true,
} }
}, },
props: {
hasChanges: {
type: Boolean,
default: false,
},
},
} }