App.vue 516 B

123456789101112131415161718192021
  1. <template>
  2. <div id="vue-admin-beautiful">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: "App",
  9. mounted() {
  10. let _this = this;
  11. window.onresize = function () {
  12. // 定义窗口大小变更通知事件
  13. _this.$store.state.realTime.screenWidth =
  14. document.documentElement.clientWidth; //窗口宽度
  15. _this.$store.state.realTime.screenHeight =
  16. document.documentElement.clientHeight; //窗口高度
  17. };
  18. },
  19. };
  20. </script>