田源
2023-10-12 b4c7c6a738f44afadbc388bb774ac044e7fafe38
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
<template>
    <fileContent
      :options="options"
      :ownbizOid="options.ownbizOid"
    ></fileContent>
</template>
 
<script>
import fileContent from './main.vue';
export default {
  name: "inHtml",
  components: { fileContent },
  props: ["options"],
  data(){
    return{
    }
  },
  computed: {
  }
}
</script>
 
<style scoped>
 
</style>