@burh/nuxt-core 1.0.221 → 1.0.223
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -115,7 +115,8 @@ export default {
|
|
|
115
115
|
props: {
|
|
116
116
|
isActive: Boolean,
|
|
117
117
|
allJobs: Array,
|
|
118
|
-
userId: String
|
|
118
|
+
userId: String,
|
|
119
|
+
allReasons: Array
|
|
119
120
|
},
|
|
120
121
|
data() {
|
|
121
122
|
return {
|
|
@@ -125,17 +126,7 @@ export default {
|
|
|
125
126
|
salary: 'R$ 0,00',
|
|
126
127
|
confidential: false,
|
|
127
128
|
observations: ''
|
|
128
|
-
}
|
|
129
|
-
allReasons: [
|
|
130
|
-
{
|
|
131
|
-
value: 'Aumento de quadro',
|
|
132
|
-
label: 'Aumento de quadro'
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
value: 'Outra coisa que não sei ainda',
|
|
136
|
-
label: 'Outra coisa que não sei ainda'
|
|
137
|
-
}
|
|
138
|
-
]
|
|
129
|
+
}
|
|
139
130
|
};
|
|
140
131
|
},
|
|
141
132
|
methods: {
|