We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c479f4e commit e343042Copy full SHA for e343042
src/components/Phase.vue
@@ -68,7 +68,6 @@ import MultipleSelect from './MultipleSelect.vue'
68
export default class Phase extends Vue {
69
// Props
70
@Prop() private phase!: PhaseObject
71
- @Prop() private consultants!: string[]
72
@Prop() private taux!: TauxObject
73
74
// Data
@@ -83,14 +82,9 @@ export default class Phase extends Vue {
83
82
84
mode: string = 'price' // 'price' or 'pay' (avoid infinite loop cause by watch and calculations)
85
86
- consultant: string = '';
87
-
88
// Lifecycle hood
89
mounted () {
90
this.calculate()
91
- if (this.consultants.length) {
92
- this.consultant = this.consultants[0]
93
- }
94
}
95
96
// Watchers
0 commit comments