blob: 34aa1d9f129c9badf62cb4b5fd354ce0f2d39231 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<template>
<div id="app">
<Navbar></Navbar>
<router-view />
<Footer></Footer>
</div>
</template>
<script>
import Navbar from "@/components/Navbar.vue";
import Footer from "@/components/Footer.vue";
export default {
name: "App",
components: {
Navbar,
Footer
}
};
</script>
<style lang="scss">
@import "../node_modules/bulma/bulma.sass";
</style>
|