Files
nuxt-frontend/components/UI/FullScreen/FullScreen.vue
Joris Slagter 791aebc346
Some checks failed
continuous-integration/drone/push Build is failing
Initial Nuxt frontend import
- Complete GGZ Ecademy Nuxt.js user portal
- Learning products browser and management
- Member management interface
- User authentication and roles
- Multi-language support (NL/EN)
- Vuex store for state management
- Component-based architecture
2025-12-02 17:48:48 +01:00

21 lines
321 B
Vue

<template>
<v-btn icon @click="handleFullScreen()">
<v-icon small>icon-fullscreen</v-icon>
</v-btn>
</template>
<script>
import Util from '@/util';
export default {
methods: {
handleFullScreen () {
Util.toggleFullScreen();
}
}
};
</script>
<style lang="scss" scoped>
</style>