[+] Create unread-entry component

This commit is contained in:
Hykilpikonna
2019-10-05 16:10:18 -04:00
parent e1584c80a5
commit 25c3d8e6c1
3 changed files with 17 additions and 0 deletions
@@ -0,0 +1,10 @@
import {Component, Prop, Vue} from 'vue-property-decorator';
import {Assignment, Course} from '@/components/app/app';
@Component({
})
export default class UnreadEntry extends Vue
{
// @ts-ignore
@Prop({required: true}) assignment: Assignment;
}
@@ -0,0 +1,7 @@
<template>
<div class="unread-entry">
</div>
</template>
<script src="./unread-entry.ts" lang="ts"></script>
<style src="./unread-entry.scss" lang="scss"></style>