vehicle-monitor/src/main.ts

6 lines
115 B
TypeScript
Raw Normal View History

2025-02-24 22:45:14 +08:00
import { createApp } from 'vue';
import './style.css';
import App from './App.vue';
2025-02-24 18:23:33 +08:00
2025-02-24 22:45:14 +08:00
createApp(App).mount('#app');