mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-05 02:51:23 -04:00
12 lines
212 B
Vue
12 lines
212 B
Vue
<template>
|
|
<pre>{{v === undefined ? 'undefined' : JSON.stringify(v, null, 4)}}</pre>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
v: { required: true },
|
|
},
|
|
};
|
|
</script>
|