Leon Etienne (ubuntu wsl) 1f13487fca Frontend: Basic framework
2020-09-27 21:05:58 +02:00

23 lines
276 B
Vue

<template>
<div>
<Background />
<Nuxt />
</div>
</template>
<script>
import Background from "~/components/Layout/Background";
export default {
components: {
Background,
}
};
</script>
<style lang="css" scoped>
.dontcry {
color: #fff;
}
</style>