You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
484 B
30 lines
484 B
<template>
|
|
<div class="contest-works"></div>
|
|
</template>
|
|
|
|
<script>
|
|
import {api} from "../js/modules/api";
|
|
import ContestWork from './blocks/ContestWork';
|
|
|
|
export default {
|
|
name: "contest-work",
|
|
prop: ['contestId'],
|
|
data(){
|
|
return {
|
|
|
|
};
|
|
},
|
|
mounted() {
|
|
api.getContestWorks(this.contestId).then((response) => {
|
|
|
|
});
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.contest-works::after {
|
|
content ' '
|
|
flex-grow 99999999
|
|
}
|
|
</style>
|
|
|