mirror of
https://github.com/Coldsmiles/infstarweb.git
synced 2026-04-23 02:30:41 +08:00
20 lines
369 B
Vue
20 lines
369 B
Vue
<template>
|
|
<iframe
|
|
class="iframe-fullpage"
|
|
src="https://doc.infstar.cn/public/libraries/2mgbxkn9va4kwyg4"
|
|
frameborder="0"
|
|
allowfullscreen
|
|
></iframe>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.iframe-fullpage {
|
|
position: fixed;
|
|
top: var(--bl-header-height);
|
|
left: 0;
|
|
width: 100%;
|
|
height: calc(100vh - var(--bl-header-height));
|
|
border: none;
|
|
}
|
|
</style>
|