ludc
2023-07-27 efff5c8410c9657915eb05615c13c2de7421c61a
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>