Skip to content

Commit

Permalink
#2490 - remove warning about importing defineEmits
Browse files Browse the repository at this point in the history
  • Loading branch information
rmmayo committed Jan 25, 2024
1 parent 9c34b75 commit bda8ef2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dashboard-prime/src/components/subjects/Subject.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup>
import { ref, computed, onMounted, defineEmits, nextTick, watch } from 'vue';
import { ref, computed, onMounted, nextTick, watch } from 'vue';
import { useStore } from 'vuex';
import Badge from 'primevue/badge';
import { useSkillsAnnouncer } from '@/common-components/utilities/UseSkillsAnnouncer.js'
Expand Down
2 changes: 1 addition & 1 deletion dashboard-prime/src/components/subjects/Subjects.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup>
import { ref, computed, onMounted, nextTick, defineEmits, watch } from 'vue';
import { ref, computed, onMounted, nextTick, watch } from 'vue';
import { useStore, createNamespacedHelpers } from 'vuex'
import { useRoute } from 'vue-router'
import { SkillsReporter } from '@skilltree/skills-client-js';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup>
import { computed, defineEmits } from 'vue';
import { computed } from 'vue';
const props = defineProps(['options']);
const emit = defineEmits(['edit', 'delete', 'share', 'unshare']);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup>
import { ref, defineEmits } from 'vue';
import { ref } from 'vue';
import Badge from 'primevue/badge';
import Card from 'primevue/card';
Expand Down

0 comments on commit bda8ef2

Please sign in to comment.