mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-04 10:34:07 -04:00
12 lines
180 B
Vue
12 lines
180 B
Vue
<template>
|
|
<pre>{{JSON.stringify(v, null, 4)}}</pre>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
v: { required: true },
|
|
},
|
|
};
|
|
</script>
|