Skip to content

Commit

Permalink
Remove unused imports from masthead item component
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed May 20, 2024
1 parent e5d45db commit 426d87c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions client/src/components/Masthead/MastheadItem.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
<script setup>
import { BDropdownItem, BNavItem, BNavItemDropdown, VBPopoverPlugin, VBTooltipPlugin } from "bootstrap-vue";
import { BNavItem, VBPopoverPlugin, VBTooltipPlugin } from "bootstrap-vue";
import { withPrefix } from "utils/redirect";
import Vue, { computed, getCurrentInstance, ref } from "vue";
import Vue, { computed, getCurrentInstance } from "vue";
Vue.use(VBPopoverPlugin);
Vue.use(VBTooltipPlugin);
const instance = getCurrentInstance().proxy;
const emit = defineEmits(["click", "open-url"]);
const dropdown = ref(null);
/* props */
const props = defineProps({
Expand Down

0 comments on commit 426d87c

Please sign in to comment.