App.vue 200 Bytes
Newer Older
Tiarro Elprida Tamba committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<template>
  <div id="app">
    <router-view/>
    <Footer />
  </div>
</template>

<script>
import Footer from "@/components/Footer.vue"

export default {
  components: {
    Footer
  }
}
</script>