dengjie commit :首页和详情页样式初步完成

This commit is contained in:
clay
2022-12-16 01:07:48 +08:00
parent faab99a8ce
commit 9223a1023e
68 changed files with 2866 additions and 7 deletions

View File

@@ -0,0 +1,27 @@
<template>
<!--增加audio标签支持-->
<audio
:id="node.attr.id"
:class="node.classStr"
:style="node.styleStr"
:src="node.attr.src"
:loop="node.attr.loop"
:poster="node.attr.poster"
:name="node.attr.name"
:author="node.attr.author"
controls></audio>
</template>
<script>
export default {
name: 'wxParseAudio',
props: {
node: {
type: Object,
default() {
return {};
},
},
},
};
</script>