[+] Create unread-entry component
This commit is contained in:
@@ -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>
|
||||||
Reference in New Issue
Block a user