mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -04:00
* feat: add api endpoints for volume check * feat: add docker icon * add size prop * feat: add frontend UI for checking docker-volume * update caddy to server validation file * add more extensive documentation around setup req * fix: wrong type on user id #1123 * spelling * refactor: cleanup excessive function calls
32 lines
689 B
Vue
32 lines
689 B
Vue
<template>
|
|
<div class="text-center">
|
|
<v-menu top offset-y left open-on-hover>
|
|
<template #activator="{ on, attrs }">
|
|
<v-btn :small="small" icon v-bind="attrs" v-on="on" @click.stop>
|
|
<v-icon :small="small"> {{ $globals.icons.help }} </v-icon>
|
|
</v-btn>
|
|
</template>
|
|
<v-card max-width="300px">
|
|
<v-card-text>
|
|
<slot></slot>
|
|
</v-card-text>
|
|
</v-card>
|
|
</v-menu>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "@nuxtjs/composition-api";
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
small: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style scoped></style>
|