summaryrefslogblamecommitdiff
path: root/iridescence/src/App.vue
blob: aee2f103216cc86c67a635d962eade870af38856 (plain) (tree)
1
2
3
4
5
6
7
8
9

                
                     



                   

                                             
 



                
   




                                           
        
<template>
  <div id="app">
    <Navbar></Navbar>
    <router-view />
  </div>
</template>

<script>
import Navbar from "@/components/Navbar.vue";

export default {
  name: "App",
  components: {
    Navbar
  }
};
</script>

<style lang="scss">
@import "../node_modules/bulma/bulma.sass";
</style>