mirror of
https://github.com/bellingcat/auto-archiver-setup-tool.git
synced 2026-06-08 03:28:37 +03:00
22 lines
260 B
Vue
22 lines
260 B
Vue
<template>
|
|
<v-app>
|
|
<NavBar />
|
|
<v-main>
|
|
<router-view />
|
|
</v-main>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from "@/components/NavBar.vue";
|
|
|
|
export default {
|
|
name: "App",
|
|
components: {
|
|
NavBar,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|