23 lines
276 B
Vue
Raw Normal View History

<template>
<div>
2020-09-27 21:05:58 +02:00
<Background />
<Nuxt />
</div>
</template>
2020-09-27 21:05:58 +02:00
<script>
import Background from "~/components/Layout/Background";
2020-09-27 21:05:58 +02:00
export default {
components: {
Background,
}
};
</script>
2020-09-27 21:05:58 +02:00
<style lang="css" scoped>
.dontcry {
color: #fff;
}
</style>