zhongshujie
2024-07-04 38b2ebcdd71d5f59b79c2e9db9f6a857fef34c63
src/books/embedded/view/index.vue
@@ -2,10 +2,6 @@
  <div
    class="embedded-book"
    @mouseup="handleMouseUp"
    :style="{
      fontSize: fontSize ? fontSize + 'px' : '16px',
      transform: `scale(${pageZoom ? pageZoom : 1})`,
    }"
  >
    <pageContent></pageContent>
  </div>
@@ -26,14 +22,6 @@
      cardList: [],
      isMouseDown: false,
    };
  },
  computed: {
    fontSize() {
      return this.$store.state.qiankun.fontSize;
    },
    pageZoom() {
      return this.$store.state.qiankun.scale / 100;
    },
  },
  mounted() {
  },