This website works better with JavaScript.
首頁
探索
說明
註冊
登入
suimang
/
yqzj_front_home
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
video
master
chutingting
1 年之前
父節點
bee47d3972
當前提交
0d41a95659
共有
2 個文件被更改
,包括
19 次插入
和
1 次删除
分割檢視
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
查看文件
@@ -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
查看文件
@@ -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…
取消
儲存