summaryrefslogtreecommitdiff
path: root/iridescence/src/App.vue
blob: aee2f103216cc86c67a635d962eade870af38856 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<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>