<!-- 功能:流程图 作者:calliope --> <template> <div class='flowChart'> <img :src="formData" alt=""> </div> </template> <script> export default { props: { formData: { type: String, default: '' } } } </script> <style scoped lang="scss"> @import "~@/styles/mixin.scss"; .flowChart { margin: 20px 0; } </style>