You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
333 B
25 lines
333 B
<template>
|
|
<v-app>
|
|
<NavBar />
|
|
<v-main>
|
|
<Nuxt />
|
|
</v-main>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from "../components/NavBar.vue";
|
|
export default {
|
|
name: "redirect",
|
|
components: {
|
|
NavBar,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
html,
|
|
body {
|
|
// overflow-x: hidden;
|
|
}
|
|
</style>
|