ZZJ
2022-01-26 c7298c0ad9c728f55618ad4f924f723f7d2d0a38
src/pages/search/index/App.vue
@@ -17,7 +17,7 @@
<script>
import LeftNav from "@/components/LeftNav";
// import CameraVideo from "./components/Video.vue";
import RightSide from "./Searching"
import RightSide from "./Searching";
import CardWindow from "@/components/cardWindow";
export default {
@@ -25,16 +25,15 @@
  components: {
    LeftNav,
    RightSide,
    CardWindow
    CardWindow,
  },
  data() {
    return {
      screenHeight: 0,
    }
    };
  },
  created() {
    // this.parseUrl();
  },
  mounted() {
    this.screenHeight = document.documentElement.clientHeight - 20;
@@ -43,13 +42,10 @@
        this.screenHeight = document.documentElement.clientHeight - 20;
      })();
    };
  },
  methods: {
    parseUrl() {
    }
  }
    parseUrl() {},
  },
};
</script>