12 lines
182 B
Vue
12 lines
182 B
Vue
<template>
|
|
<div>
|
|
<h1>Mobile Page</h1>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// Mobile specific logic can be added here
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|