adding latest
This commit is contained in:
26
src/components/LoginFull.vue
Normal file
26
src/components/LoginFull.vue
Normal 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>
|
||||
Reference in New Issue
Block a user