mirror of
https://github.com/Dadechin/XRoomDashboardFront.git
synced 2025-07-16 23:24:34 +00:00
11 lines
302 B
JavaScript
11 lines
302 B
JavaScript
// src/main.js
|
|
import { createApp } from 'vue';
|
|
import App from './App.vue';
|
|
import router from './router';
|
|
import Swal from 'sweetalert2';
|
|
import '@/assets/main.css';
|
|
|
|
const app = createApp(App);
|
|
app.use(router);
|
|
app.config.globalProperties.$swal = Swal; // Add SweetAlert2 globally
|
|
app.mount('#app'); |