Files
HIS/front/src/components/X-EMR/Editor.vue
2025-05-04 23:07:09 +08:00

14 lines
255 B
Vue

<template>
<!-- 根据实际部署环境修改 editor.html 的路径 -->
<iframe src="/editor.html" v-bind="objectOfAttrs"></iframe>
</template>
<script setup>
const objectOfAttrs = {
width: '100%',
height: '800vh',
frameborder: 0
}
</script>