田源
2024-09-29 7d05c69630d066c0992368423f90e440e3638f91
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>