добавил quasar

This commit is contained in:
kandrusyak
2023-01-15 23:15:29 +03:00
parent d32a35ae5c
commit e5aec474aa
4 changed files with 1903 additions and 471 deletions

View File

@@ -9,6 +9,9 @@ import "./assets/css/iconfonts.css";
import { clientsServer } from "../server.js";
import { clickOutside } from "@/shared/clickOutside";
import store from "./store";
import { install } from "astra-ui";
const AstraUI = { install };
if (process.env.NODE_ENV === "development") {
clientsServer({ environment: "development" });
@@ -18,6 +21,7 @@ moment.locale("ru");
createApp(App)
.use(store)
.use(AstraUI)
.directive("click-outside", clickOutside)
.use(router, moment)
.mount("#app");