index.vue
996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<template>
<div>
<VideoPlay :h="h" :path="option.dataset" :autoPlay="autoplay" :poster="option.poster" />
</div>
</template>
<script setup lang="ts">
import { PropType, toRefs, shallowReactive, watch } from 'vue'
import { CreateComponentType } from '@/packages/index.d'
import { option as configOption } from './config'
import { VideoPlay } from './components'
const props = defineProps({
chartConfig: {
type: Object as PropType<CreateComponentType>,
required: true
}
})
const { h } = toRefs(props.chartConfig.attr)
const { autoplay, dataset, poster } = toRefs(props.chartConfig.option)
const option = shallowReactive({
dataset: configOption.dataset,
poster: configOption.poster
})
watch(
() => dataset?.value,
(newData: string) => {
option.dataset = newData
},
{
immediate: true
}
)
watch(
() => poster?.value,
(newData: string) => {
option.poster = newData
},
{
immediate: true
}
)
</script>
<style lang="scss" scoped></style>