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