This repository has been archived on 2024-11-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
enzos-events/resources/js/app.ts
Sockenklaus 360fa51607 fixed problems with tailwind overwriting naive ui styles
implemented user datatable
2023-07-09 22:37:43 +02:00

13 lines
356 B
TypeScript

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