aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/main.js
blob: a1d7b471dd93686db232ef45d47010318f024193 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                   
                            

                                                   

                           
                           
 

                                                    

   
                        
import { createApp, h } from "vue";
import App from "./App.vue";

import "@fortawesome/fontawesome-free/css/all.css";
import "./assets/app.scss";

const app = createApp(App);

app.component("DynamicStyle", (_props, context) => {
  return h("style", {}, context.slots);
});

app.mount("#app-mount");