36 lines
336 B
JavaScript
36 lines
336 B
JavaScript
var sectionAwardsComponent = {
|
|
template: '#section-awards-template',
|
|
|
|
|
|
|
|
mounted: function()
|
|
{
|
|
|
|
},
|
|
|
|
|
|
|
|
destroyed: function()
|
|
{
|
|
|
|
},
|
|
|
|
|
|
|
|
data: function()
|
|
{
|
|
return {
|
|
item: {}
|
|
};
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
addAward: function()
|
|
{
|
|
var item = this.$root.getDefaultAward();
|
|
this.$root.sections.awards.push(item);
|
|
}
|
|
}
|
|
}; |