mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
ab125bd1c5
Co-authored-by: Pooya Parsa <pooya@pi0.io>
27 lines
444 B
Vue
27 lines
444 B
Vue
<script setup lang="ts">
|
|
const props = defineProps({
|
|
bool: Boolean,
|
|
number: Number,
|
|
str: String,
|
|
obj: Object
|
|
})
|
|
|
|
const hasRouter = useState('hasRouter', () => !!useRouter())
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
Was router enabled: {{ hasRouter }}
|
|
<br>
|
|
Props:
|
|
<!-- eslint-disable-next-line vue/no-v-html -->
|
|
<pre v-html="JSON.stringify(props, null, 2)" />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
pre {
|
|
color: blue
|
|
}
|
|
</style>
|