Skip to content

Commit

Permalink
Añadir componentes de navegación en classRoomComponent.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
MADGRISMAD committed Jun 12, 2024
1 parent 692020e commit c8ffe7f
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions FrontEnd/src/components/classRoomComponent.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<template>
<div id="app" class="min-h-screen flex flex-col">
<!-- Barra de navegación -->
<GobBarComponent />
<ITTBar />
<NavBarComponent />


<div class="flex flex-1">
<aside class="w-16 bg-zinc-100 p-4">
Expand Down Expand Up @@ -31,10 +36,20 @@
</template>

<script>
export default {
name: 'MicrosoftClassroom',
import NavBarComponent from './NavBarComponent.vue';
import GobBarComponent from './GobBar.vue';
import ITTBar from './ITTBar.vue';
export default {
components: {
NavBarComponent,
GobBarComponent,
ITTBar
}
</script>
};
</script>

<style scoped>
/* Agrega estilos personalizados aquí */
Expand Down

0 comments on commit c8ffe7f

Please sign in to comment.