mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-22 12:03:25 -04:00
23 lines
377 B
Vue
23 lines
377 B
Vue
<template>
|
|
<Popover
|
|
:title="text"
|
|
:aria-label="text"
|
|
placement="top"
|
|
>
|
|
<slot></slot>
|
|
<template #content>
|
|
{{ text }}
|
|
</template>
|
|
</Popover>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
props: {
|
|
text: { required: true, type: String },
|
|
},
|
|
});
|
|
</script>
|