index.vue 537 B

123456789101112131415161718192021
  1. <template>
  2. <!-- <object
  3. :data="route.query.path || 'https://aidoc.sxtvs.net'"
  4. style="height:100%;height: 100%;"
  5. type="text/html"
  6. ></object> -->
  7. <!-- <iframe :src="route.query.path" frameborder="0"></iframe> -->
  8. <el-empty description="已在新页面打开" class="empty" />
  9. </template>
  10. <script setup>
  11. import { useRoute } from 'vue-router';
  12. const route = useRoute();
  13. window.open(route.query.path || 'https://aidoc.sxtvs.net/newdoc');
  14. </script>
  15. <style>
  16. .el-empty__image{
  17. margin: 0 auto;
  18. }
  19. </style>