Skip to content

Commit

Permalink
fix: add missing imports in client-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed May 31, 2022
1 parent 332f42a commit c0ce7b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runtime/plugin.client.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { reactive, watch } from 'vue'
import { computed, reactive, watch } from 'vue'

import type { ColorModeInstance } from './types'
import { defineNuxtPlugin, isVue2, isVue3, useRouter, useState } from '#imports'
import { defineNuxtPlugin, isVue2, isVue3, useRouter, useHead, useState } from '#imports'
import { globalName, storageKey, dataValue } from '#color-mode-options'

const helper = window[globalName] as unknown as {
Expand Down

0 comments on commit c0ce7b2

Please sign in to comment.