Archived
1
0
This repository has been archived on 2024-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
cyca/resources/js/import.js
2022-01-12 00:35:37 +01:00

13 lines
248 B
JavaScript
Executable File

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