Fix some linting issues
This commit is contained in:
parent
aa9bbba893
commit
3bd875814f
|
|
@ -12,7 +12,7 @@
|
|||
v-html="assignment.assignment"
|
||||
/>
|
||||
|
||||
<solution
|
||||
<assignment-solution
|
||||
:value="solution"
|
||||
v-if="assignment.solution"
|
||||
/>
|
||||
|
|
@ -78,7 +78,7 @@ export interface Props {
|
|||
}
|
||||
|
||||
const SubmissionForm = defineAsyncComponent(() => import('@/components/content-blocks/assignment/SubmissionForm.vue'));
|
||||
const Solution = defineAsyncComponent(() => import('@/components/content-blocks/Solution.vue'));
|
||||
const AssignmentSolution = defineAsyncComponent(() => import('@/components/content-blocks/Solution.vue'));
|
||||
const SpellCheck = defineAsyncComponent(() => import('@/components/content-blocks/assignment/SpellCheck.vue'));
|
||||
|
||||
const route = useRoute();
|
||||
|
|
|
|||
|
|
@ -33,7 +33,6 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import { mapActions } from 'vuex';
|
||||
import ContentBookmark from '@/components/profile/ContentBookmark.vue';
|
||||
import ActivityEntry from '@/components/profile/ActivityEntry.vue';
|
||||
|
||||
|
|
|
|||
|
|
@ -71,7 +71,6 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import { mapActions } from 'vuex';
|
||||
import ContentBookmark from '@/components/profile/ContentBookmark.vue';
|
||||
import ActivityEntry from '@/components/profile/ActivityEntry.vue';
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue