mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
2b6b4078fa
~ imitate ubuntu-style tabbed buttons
15 lines
258 B
JavaScript
15 lines
258 B
JavaScript
import "./assets/scss/index.scss";
|
|
|
|
import { createPinia } from "pinia";
|
|
import { createApp } from "vue";
|
|
|
|
import App from "./App.vue";
|
|
import router from "./router";
|
|
|
|
const app = createApp(App);
|
|
|
|
app.use(createPinia());
|
|
app.use(router);
|
|
|
|
app.mount("#app");
|