Files
PhotonVision/photon-client/src/views/DocsView.vue

23 lines
703 B
Vue
Raw Normal View History

<template>
<div
style="overflow:hidden; height:100%; width:100%"
>
<div
v-if="() => process.env.NODE_ENV === 'development'"
style="width: 100%; height: 100%; padding: 16px"
>
<span style="color: white; font-weight: bold">PhotonClient is in development mode so the documentation page will not load. Please recompile in production mode with the documentation copied over after a full build.</span>
</div>
<div
v-else
style="width: 100%; height: 100%"
>
<!--suppress HtmlUnknownTarget -->
<iframe
src="docs/index.html"
style="overflow:hidden; height:100%; width:100%; border: 0"
/>
</div>
</div>
</template>