#add env management

This commit is contained in:
2025-08-01 16:55:23 +08:00
parent 57a4d7d97e
commit 5c4492d8f8
16 changed files with 5524 additions and 5 deletions

View File

@@ -1 +1,11 @@
import './bootstrap';
import { createApp } from 'vue';
import EnvManager from './components/EnvManager.vue';
console.log('App.js loading...');
const app = createApp({});
app.component('env-manager', EnvManager);
console.log('Mounting app...');
app.mount('#app');