cyca/resources/js/highlights.js
Richard Dern 400e3d01f1 Refresh
2022-01-12 00:35:37 +01:00

13 lines
254 B
JavaScript
Executable File

require("./modules/bootstrap");
import { createApp } from "vue";
import mixins from "./mixins";
import Highlights from "./components/Highlights.vue";
createApp({
components: { Highlights },
el: "#app",
})
.mixin(mixins)
.mount("#app");