initial commit

This commit is contained in:
sockenklaus
2023-06-30 01:29:26 +02:00
commit 6b7fd89313
44 changed files with 29969 additions and 0 deletions

14
resources/js/app.js Normal file
View File

@@ -0,0 +1,14 @@
import '../css/app.css'
import { createApp, h } from "vue";
import { createInertiaApp, Link } from "@inertiajs/vue3";
import '../css/app.css'
createInertiaApp({
resolve: (name) => require(`./pages/${name}`),
setup({ el, App, props, plugin }) {
createApp({ render: () => h(App, props) })
.use(plugin)
.component('inertia-link', Link)
.mount(el);
},
});

View File

@@ -0,0 +1,11 @@
<template>
{{ test }}
</template>
<script setup>
defineProps({
test: String,
})
</script>