This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
suimang
/
yqzj_front_home
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
video
master
chutingting
1 year ago
parent
bee47d3972
commit
0d41a95659
2 changed files
with
19 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/components/swiperHor/index.vue
+18
-0
src/components/video/index.vue
+ 1
- 1
src/components/swiperHor/index.vue
View File
@@ -39,7 +39,7 @@ import Swiper from 'swiper'
import 'swiper/dist/js/swiper'
import 'swiper/dist/css/swiper.css'
export default {
name: '
PB
annerSwiper',
name: '
b
annerSwiper',
props: {
bannerArray: Array
},
+ 18
- 0
src/components/video/index.vue
View File
@@ -0,0 +1,18 @@
<template>
<div>
<video :src="url" autoplay controls ref="videoPlayer"></video>
</div>
</template>
<script>
export default {
props: {
url: {
type: String,
default: ''
}
},
data() {
return {}
}
}
</script>
Write
Preview
Loading…
Cancel
Save