mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-05 03:57:03 -04:00
17 lines
291 B
Vue
17 lines
291 B
Vue
<template>
|
|
<div class="alert alert-light border">
|
|
<p><T>census.share</T></p>
|
|
<div class="text-center">
|
|
<Share :title="text" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
text: { required: true },
|
|
},
|
|
};
|
|
</script>
|