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.
 
 
 

16 lines
355 B

  1. <template>
  2. <!--增加video标签支持,并循环添加-->
  3. <view :class="node.classStr" :style="node.styleStr">
  4. <video :class="node.classStr" :style="node.styleStr" class="video-video" :src="node.attr.src"></video>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'wxParseVideo',
  10. props: {
  11. node: {},
  12. },
  13. };
  14. </script>