Skip to content

Commit

Permalink
fix: missing imports on preview mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Atinux committed Oct 5, 2022
1 parent 9e91948 commit f9f161b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runtime/preview/components/ContentPreviewMode.vue
@@ -1,6 +1,6 @@
<script setup>
import { onMounted, ref, onUnmounted } from 'vue'
import { refreshNuxtData } from '#imports'
import { onMounted, ref, onUnmounted, nextTick } from 'vue'
import { refreshNuxtData, useCookie, useRoute, navigateTo } from '#imports'
const props = defineProps({
previewToken: {
type: Object,
Expand Down

0 comments on commit f9f161b

Please sign in to comment.