Remove unused prop parameter
This commit is contained in:
parent
c03275dc01
commit
cd3bbf0651
|
|
@ -38,7 +38,12 @@
|
||||||
import me from '@/mixins/me';
|
import me from '@/mixins/me';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: ['objective', 'schoolClass'],
|
props: {
|
||||||
|
objective: {
|
||||||
|
type: Object,
|
||||||
|
default: null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
mixins: [me, editModule],
|
mixins: [me, editModule],
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,6 @@
|
||||||
<objective
|
<objective
|
||||||
:key="objective.id"
|
:key="objective.id"
|
||||||
:objective="objective"
|
:objective="objective"
|
||||||
:school-class="schoolClass"
|
|
||||||
class="objective-group__objective"
|
class="objective-group__objective"
|
||||||
v-for="objective in group.objectives"/>
|
v-for="objective in group.objectives"/>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue