Premier commit
This commit is contained in:
17
resources/js/app.js
Normal file
17
resources/js/app.js
Normal 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');
|
||||
Reference in New Issue
Block a user