mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
18 lines
296 B
Vue
18 lines
296 B
Vue
<template>
|
|
<dropdown class="avatar-menu" offset="8" :placement="placement">
|
|
<template #default="{ toggleMenu }">
|
|
XXX
|
|
</template>
|
|
</dropdown>
|
|
</template>
|
|
|
|
<script>
|
|
import Dropdown from '~/components/Dropdown'
|
|
|
|
export default {
|
|
components: {
|
|
Dropdown,
|
|
},
|
|
}
|
|
</script>
|