Files
BRISTO/resources/js/app.js
jeremy bayse 89a369964d Premier commit
2026-02-09 11:27:21 +01:00

18 lines
376 B
JavaScript

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');