mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-05 12:07:22 -04:00
10 lines
175 B
Vue
10 lines
175 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
v: unknown;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<pre>{{ v === undefined ? 'undefined' : JSON.stringify(v, null, 4) }}</pre>
|
|
</template>
|