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.

23 lines
372 B

<template>
<v-app
:style="{
background: `linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(${bgImage})`,
}"
>
<v-main>
<router-view></router-view>
</v-main>
</v-app>
</template>
<script>
import BgImage from "./assets/Untitled-1.jpg";
export default {
name: "App",
data: () => ({
bgImage: BgImage,
//
}),
};
</script>