mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-04-20 12:47:23 +08:00
23 lines
500 B
TypeScript
23 lines
500 B
TypeScript
import 'vfonts/Lato.css';
|
|
import 'vfonts/FiraCode.css';
|
|
// tailwind css
|
|
import './index.css';
|
|
import 'remixicon/fonts/remixicon.css';
|
|
|
|
import { createApp } from 'vue';
|
|
|
|
import router from '@/router';
|
|
import store from '@/store';
|
|
|
|
import App from './App.vue';
|
|
import directives from './directive';
|
|
|
|
const app = createApp(App);
|
|
|
|
Object.keys(directives).forEach((key: string) => {
|
|
app.directive(key, directives[key as keyof typeof directives]);
|
|
});
|
|
app.use(router);
|
|
app.use(store);
|
|
app.mount('#app');
|