From bc1e00a8dfb5d153bdba27528e472339f15de57b Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Mon, 11 Apr 2022 15:13:21 +0100 Subject: [PATCH] style: remove unused import --- packages/nuxt3/src/head/runtime/lib/vueuse-head.plugin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nuxt3/src/head/runtime/lib/vueuse-head.plugin.ts b/packages/nuxt3/src/head/runtime/lib/vueuse-head.plugin.ts index 549333a75f..0e3bb809bf 100644 --- a/packages/nuxt3/src/head/runtime/lib/vueuse-head.plugin.ts +++ b/packages/nuxt3/src/head/runtime/lib/vueuse-head.plugin.ts @@ -1,5 +1,5 @@ import { createHead, renderHeadToString } from '@vueuse/head' -import { computed, ref, unref, watchEffect, onBeforeUnmount, getCurrentInstance, ComputedGetter } from 'vue' +import { computed, ref, watchEffect, onBeforeUnmount, getCurrentInstance, ComputedGetter } from 'vue' import defu from 'defu' import type { MetaObject } from '..' import { defineNuxtPlugin } from '#app'