田源
2023-07-28 1d69b2703aa304f9e8b2c470b8a3d74d43cb4809
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>