adding latest

This commit is contained in:
2020-03-24 02:04:43 +00:00
parent 77be707311
commit 44aaddd3bc
17 changed files with 284 additions and 85 deletions

View File

@@ -0,0 +1,26 @@
<template>
<video-background
:src="video"
style=" height: 100vh;"
overlay="linear-gradient(45deg,#2a4ae430,#fb949e6b)"
>
</video-background>
</template>
<script>
export default {
data() {
return {
video: require("../assets/videos/optical.mp4")
};
},
created () {
this.$store.commit("fullScreen", true);
},
beforeDestroy () {
this.$store.commit("fullScreen", false);
},
};
</script>
<style lang="scss" scoped></style>