18 lines
376 B
JavaScript
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');
|