mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2025-08-09 09:52:26 +00:00
24 lines
493 B
JavaScript
24 lines
493 B
JavaScript
import { createApp } from "vue";
|
|
import App from "./App.vue";
|
|
import VueGtag from "vue-gtag";
|
|
import { createRouter, createWebHashHistory } from "vue-router";
|
|
|
|
import "bootstrap/dist/css/bootstrap.min.css";
|
|
import "bootstrap/dist/js/bootstrap.min.js";
|
|
|
|
import "./theme.css";
|
|
|
|
const routes = [];
|
|
|
|
const router = createRouter({
|
|
history: createWebHashHistory(),
|
|
routes,
|
|
});
|
|
|
|
const app = createApp(App).use(VueGtag, {
|
|
config: { id: "G-YF11ZH9SYD" },
|
|
});
|
|
|
|
app.use(router);
|
|
app.mount("#app");
|