mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-04 10:34:07 -04:00
17 lines
288 B
Vue
17 lines
288 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>
|