You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
272 B
18 lines
272 B
2 weeks ago
|
<template>
|
||
|
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { onBeforeMount } from 'vue'
|
||
|
import { useRouter } from 'vue-router'
|
||
|
const router = useRouter()
|
||
|
onBeforeMount(() => {
|
||
|
router.replace({
|
||
|
path: '/largeScreen',
|
||
|
})
|
||
|
})
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang='scss'></style>
|