15 lines
216 B
Vue
15 lines
216 B
Vue
<script setup>
|
|
defineProps({
|
|
appName: String,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<main style="padding: 2rem">
|
|
<h1>{{ appName }}</h1>
|
|
<p>Laravel + Inertia + Vue läuft 🚀</p>
|
|
</main>
|
|
</template>
|
|
|
|
|