Newer
Older
securityFront / src / views / alarm / webPlay.vue
wangxitong on 26 Jan 2021 466 bytes bug4-12
<template>
  <div class="play-window-block">
    <div style="height: 100%">
      <iframe ref="play" src="/static/webCtrl/demo-easy.html" width="100%" height="100%" style="border: 0px; overflow: hidden;" />
    </div>
  </div>
</template>

<script>
export default {
  name: 'WebPlay'
}
</script>

<style scoped>
  .play-window-block {
    margin: 15px 15px 15px 0px;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1);
    height: calc(100vh - 175px);
  }
</style>