Skip to content

Commit

Permalink
feat: Add usePointer import to UserList.vue
Browse files Browse the repository at this point in the history
This commit adds the usePointer import to the UserList.vue file in order to use it in the component. The usePointer function is imported from the @vueuse/core library.
  • Loading branch information
realashleybailey committed Oct 3, 2023
1 parent 4482448 commit 105c213
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
import { defineComponent } from "vue";
import { useUsersStore } from "@/stores/users";
import { mapActions, mapWritableState } from "pinia";
import { usePointer } from "@vueuse/core";
import Draggable from "vuedraggable";
import UserItem from "./UserItem.vue";
import { usePointer } from "@vueuse/core";
export default defineComponent({
name: "UserList",
Expand Down

0 comments on commit 105c213

Please sign in to comment.