移动端路由路径从/m改为/mobile

This commit is contained in:
wangqiao
2025-09-01 11:33:07 +08:00
parent a0f1ec758e
commit be82375202
2 changed files with 1 additions and 1 deletions

14
pages/mobile/index.vue Normal file
View File

@ -0,0 +1,14 @@
<template>
<div>
<h1>Mobile Page</h1>
</div>
</template>
<script setup lang="ts">
definePageMeta({
layout: 'm'
})
// Mobile specific logic can be added here
</script>
<style lang="scss" scoped></style>