blob: 81a549caff9b0652ef160a28b910de67e0633db5 (
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
25
26
27
28
|
<template>
<div id="app">
<Navbar></Navbar>
<BusyBar></BusyBar>
<router-view />
<Footer></Footer>
</div>
</template>
<script>
import BusyBar from "@/components/BusyBar.vue";
import Navbar from "@/components/Navbar.vue";
import Footer from "@/components/Footer.vue";
export default {
name: "App",
components: {
BusyBar,
Navbar,
Footer
}
};
</script>
<style lang="scss">
@use "../node_modules/bulma/bulma.sass";
@use "../node_modules/animate.css/animate.min.css";
</style>
|