You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
340 B
15 lines
340 B
<template>
|
|
<!--增加video标签支持,并循环添加-->
|
|
<view :class="node.classStr" :style="node.styleStr">
|
|
<video :class="node.classStr" :style="node.styleStr" class="video-video" :src="node.attr.src"></video>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'wxParseVideo',
|
|
props: {
|
|
node: {},
|
|
},
|
|
};
|
|
</script>
|
|
|