fix: use explicit type imports (#830)

This commit is contained in:
Daniel Roe
2023-10-18 10:38:29 +01:00
committed by GitHub
parent 360cfe663f
commit a8279d1c97
2 changed files with 5 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ import { computed, toValue, useAttrs } from 'vue'
import type { Ref } from 'vue'
import { useAppConfig } from '#imports'
import { mergeConfig, omit, get } from '../utils'
import { Strategy } from '../types'
import type { Strategy } from '../types'
export const useUI = <T>(key, $ui: Ref<Partial<T & { strategy: Strategy }> | undefined>, $config?: Ref<T> | T, $wrapperClass?: Ref<string>, withAppConfig: boolean = false) => {
const $attrs = useAttrs()