mirror of
https://github.com/cuiocean/ZY-Player.git
synced 2026-07-27 08:40:26 +08:00
search btns event
This commit is contained in:
24
src/components/detail.vue
Normal file
24
src/components/detail.vue
Normal 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>
|
||||
Reference in New Issue
Block a user