1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-19 05:09:40 +02:00
mealie/frontend/components/global/AdvancedOnly.vue

24 lines
481 B
Vue
Raw Normal View History

<template>
<div scoped-slot></div>
</template>
<script lang="ts">
import { defineComponent, useContext } from "@nuxtjs/composition-api";
/**
* Renderless component that only renders if the user is logged in.
* and has advanced options toggled.
*/
export default defineComponent({
setup(_, ctx) {
const { $auth } = useContext();
const r = $auth?.user?.advanced || false;
return () => {
return r ? ctx.slots.default?.() : null;
};
},
});
</script>