search btns event

This commit is contained in:
Hunlongyu
2019-12-05 13:42:20 +08:00
parent 03745e63ad
commit 84ac91a3d1
4 changed files with 65 additions and 10 deletions

24
src/components/detail.vue Normal file
View File

@@ -0,0 +1,24 @@
<template>
<div class="detail">{{ video }}</div>
</template>
<script>
export default {
name: 'detail',
computed: {
video () {
return this.$store.getters.getVideo
}
}
}
</script>
<style lang="scss" scoped>
.detail{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10;
background-color: #fff;
}
</style>