田源
2023-09-18 a216d2503641b1d2ae6d4a2defa870470f2737bb
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>