10 lines
162 B
Vue
10 lines
162 B
Vue
<template>
|
|
<div>
|
|
<h1>Welcome Home</h1>
|
|
<p>This is the home page content.</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// Component logic here
|
|
</script>
|