15 lines
216 B
Vue
15 lines
216 B
Vue
<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>
|