Premier commit

This commit is contained in:
jeremy bayse
2026-02-09 11:27:21 +01:00
commit 89a369964d
114 changed files with 17837 additions and 0 deletions

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

@@ -0,0 +1,17 @@
import './bootstrap';
import '../css/app.scss';
import { createApp } from 'vue';
import * as bootstrap from 'bootstrap'; // Make bootstrap available globally if needed, or just import
window.bootstrap = bootstrap;
import ContractsTable from './components/ContractsTable.vue';
const app = createApp({
components: {
ContractsTable,
}
});
app.mount('#app');