mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 10:04:05 +00:00
18 lines
250 B
Vue
18 lines
250 B
Vue
<script setup>
|
|
const route = useRoute()
|
|
|
|
const { enabled } = usePreviewMode({
|
|
shouldEnable: () => {
|
|
return !!route.query.customPreview
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<p id="enabled">
|
|
{{ enabled }}
|
|
</p>
|
|
</div>
|
|
</template>
|