zhongshujie
5 天以前 90675cb210f5a2afc4766e6fd091776a14397d48
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>