关于html内嵌vuejs使用iframe无法加载vue实例解决方案,使用bootstrap再iframe

本文主要是介绍关于html内嵌vuejs使用iframe无法加载vue实例解决方案,使用bootstrap再iframe,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

描述:html内嵌vuejs,manage页面也采用vue进行iframe跳转,这个时候无法加载vue实例。具体原因不明,解决方案如下:bootstrap做管理页面,再通过iframe加载html内嵌vue的页面

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Management Dashboard with Bootstrap</title><!-- Bootstrap CSS --><link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"><style>/* Custom styles for main content */#main-content {padding: 20px;overflow: hidden; /* Hide scrollbar */position: relative; /* Required for absolute positioning inside */}/* Style for iframe */#main-iframe {width: 100%;height: 100%;border: none;position: absolute;top: 0;left: 0;right: 0;bottom: 0;overflow-y: auto; /* Enable scrolling */padding-right: 17px; /* Compensate for scrollbar width */box-sizing: content-box; /* Adjust content box for padding-right */}/* Custom styles for sidebar */#sidebar {background-color: #343a40; /* Dark background color */color: #f8f9fa; /* Light text color */height: 100vh; /* Full height */position: sticky;top: 0;overflow-y: auto; /* Enable scrolling */padding-top: 20px; /* Padding at the top */}/* Sidebar title */#sidebar .sidebar-title {font-size: 1.2rem;font-weight: bold;text-align: center;margin-bottom: 20px;}/* Sidebar links */#sidebar ul {list-style-type: none;padding-left: 0;}#sidebar ul li {margin-bottom: 1rem;}#sidebar ul li a {color: #f8f9fa; /* Link text color */text-decoration: none;display: block;padding: 0.5rem;transition: background-color 0.3s;}#sidebar ul li a:hover {background-color: #495057; /* Darker background on hover */}</style>
</head>
<body>
<div class="container-fluid"><div class="row"><!-- Sidebar --><nav id="sidebar" class="col-md-3 col-lg-2 d-md-block"><div class="position-sticky"><!-- Sidebar Title --><div class="sidebar-title">招聘管理</div><!-- Sidebar Links --><ul class="nav flex-column"><li class="nav-item"><a class="nav-link active" href="#" onclick="loadPage('tb_applicants_info.html')">浏览应聘信息</a></li><li class="nav-item"><a class="nav-link active" href="#" onclick="loadPage('tb_applicants.html')">应聘管理</a></li><li class="nav-item"><a class="nav-link" href="#" onclick="loadPage('tb_talent_pool.html')">浏览人才库</a></li></ul></div></nav><!-- Main Content Area --><main id="main-content" class="col-md-9 ms-sm-auto col-lg-10 px-md-4"><iframe id="main-iframe" src="" frameborder="0"></iframe></main></div>
</div><!-- Bootstrap JS (optional, for certain components) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script><script>function loadPage(pageUrl) {document.getElementById('main-iframe').src = pageUrl;}
</script></body>
</html>

这篇关于关于html内嵌vuejs使用iframe无法加载vue实例解决方案,使用bootstrap再iframe的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1081347

相关文章

springboot security使用jwt认证方式

《springbootsecurity使用jwt认证方式》:本文主要介绍springbootsecurity使用jwt认证方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录前言代码示例依赖定义mapper定义用户信息的实体beansecurity相关的类提供登录接口测试提供一

go中空接口的具体使用

《go中空接口的具体使用》空接口是一种特殊的接口类型,它不包含任何方法,本文主要介绍了go中空接口的具体使用,具有一定的参考价值,感兴趣的可以了解一下... 目录接口-空接口1. 什么是空接口?2. 如何使用空接口?第一,第二,第三,3. 空接口几个要注意的坑坑1:坑2:坑3:接口-空接口1. 什么是空接

Linux samba共享慢的原因及解决方案

《Linuxsamba共享慢的原因及解决方案》:本文主要介绍Linuxsamba共享慢的原因及解决方案,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录linux samba共享慢原因及解决问题表现原因解决办法总结Linandroidux samba共享慢原因及解决

springboot security验证码的登录实例

《springbootsecurity验证码的登录实例》:本文主要介绍springbootsecurity验证码的登录实例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,... 目录前言代码示例引入依赖定义验证码生成器定义获取验证码及认证接口测试获取验证码登录总结前言在spring

springboot security快速使用示例详解

《springbootsecurity快速使用示例详解》:本文主要介绍springbootsecurity快速使用示例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝... 目录创www.chinasem.cn建spring boot项目生成脚手架配置依赖接口示例代码项目结构启用s

Python如何使用__slots__实现节省内存和性能优化

《Python如何使用__slots__实现节省内存和性能优化》你有想过,一个小小的__slots__能让你的Python类内存消耗直接减半吗,没错,今天咱们要聊的就是这个让人眼前一亮的技巧,感兴趣的... 目录背景:内存吃得满满的类__slots__:你的内存管理小助手举个大概的例子:看看效果如何?1.

java中使用POI生成Excel并导出过程

《java中使用POI生成Excel并导出过程》:本文主要介绍java中使用POI生成Excel并导出过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录需求说明及实现方式需求完成通用代码版本1版本2结果展示type参数为atype参数为b总结注:本文章中代码均为

Spring Boot3虚拟线程的使用步骤详解

《SpringBoot3虚拟线程的使用步骤详解》虚拟线程是Java19中引入的一个新特性,旨在通过简化线程管理来提升应用程序的并发性能,:本文主要介绍SpringBoot3虚拟线程的使用步骤,... 目录问题根源分析解决方案验证验证实验实验1:未启用keep-alive实验2:启用keep-alive扩展建

tomcat多实例部署的项目实践

《tomcat多实例部署的项目实践》Tomcat多实例是指在一台设备上运行多个Tomcat服务,这些Tomcat相互独立,本文主要介绍了tomcat多实例部署的项目实践,具有一定的参考价值,感兴趣的可... 目录1.创建项目目录,测试文China编程件2js.创建实例的安装目录3.准备实例的配置文件4.编辑实例的

python+opencv处理颜色之将目标颜色转换实例代码

《python+opencv处理颜色之将目标颜色转换实例代码》OpenCV是一个的跨平台计算机视觉库,可以运行在Linux、Windows和MacOS操作系统上,:本文主要介绍python+ope... 目录下面是代码+ 效果 + 解释转HSV: 关于颜色总是要转HSV的掩膜再标注总结 目标:将红色的部分滤