mirror of
https://github.com/primedigitaltech/azon_seeker.git
synced 2026-02-01 12:25:34 +08:00
8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
import App from './App.vue';
|
|
import { setupApp } from '~/logic/common-setup';
|
|
import '../styles';
|
|
|
|
const app = createApp(App);
|
|
setupApp(app);
|
|
app.mount('#app');
|