zhongshujie
4 天以前 b385fcc30e0ee871dc31c06526e9ab84ba507ea2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script setup lang="ts">
import { onMounted, onUnmounted } from 'vue'
import { RouterView } from 'vue-router'
 
onMounted(() => {
  sessionStorage.setItem('screenWidth', window.innerWidth.toFixed())
})
</script>
 
<template>
  <RouterView />
</template>
 
<style scoped lang="less"></style>