revert(core): cleanup imports from vueuse/core that exist in vue

This reverts commit 7cc798ad
This commit is contained in:
braks
2023-11-08 16:22:15 +01:00
committed by Braks
parent 9846420e42
commit 6162389cc2
8 changed files with 13 additions and 12 deletions
@@ -1,5 +1,5 @@
<script lang="ts" setup>
import { toRef } from 'vue'
import { toRef } from '@vueuse/core'
import { useVueFlow } from '../../composables'
const { viewportRef } = useVueFlow()
@@ -1,6 +1,6 @@
<script lang="ts" setup>
import { until } from '@vueuse/core'
import { computed, onUnmounted, ref, toRef } from 'vue'
import { toRef, until } from '@vueuse/core'
import { computed, onUnmounted, ref } from 'vue'
import type { HandleProps } from '../../types/handle'
import { Position } from '../../types'
import { useHandle, useNode, useVueFlow } from '../../composables'