zhangzengfei
2020-08-03 006d65361cfc92342f2268d4c5b87666b7bfa73b
src/pages/desktop/index/components/DFrame.vue
@@ -19,11 +19,15 @@
      </slot>
    </div>
    <div class="d-frame-content">
      <iframe :src="data.url" v-if="data.url"></iframe>
      <div v-html="data.html" v-if="data.html"></div>
      <!-- <span class="d-frame-operation-resize" v-resize></span> -->
      <span class="d-frame-operation-resize" @mousedown="mousedown" @mousemove.prevent="mousemove" @mouseup="mouseup"></span>
      <span
        class="d-frame-operation-resize"
        @mousedown="mousedown"
        @mousemove.prevent="mousemove"
        @mouseup="mouseup"
      ></span>
    </div>
  </div>
</template>
@@ -179,7 +183,8 @@
</script>
<style scoped>
html,body{
html,
body {
  heiht: 100%;
}
.d-frame {
@@ -277,6 +282,6 @@
  height: 15px;
  z-index: 1000;
  cursor: nwse-resize;
  background: url("/images/resize.png") no-repeat;
  background: url("/images/desktop/resize.png") no-repeat;
}
</style>