добавил quasar
This commit is contained in:
2366
package-lock.json
generated
2366
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -10,6 +10,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@vuelidate/core": "^2.0.0",
|
"@vuelidate/core": "^2.0.0",
|
||||||
"@vuelidate/validators": "^2.0.0",
|
"@vuelidate/validators": "^2.0.0",
|
||||||
|
"astra-ui": "git+https://gitlab.dopcore.com/andrusyakka/astra-ui.git",
|
||||||
"moment": "^2.29.4",
|
"moment": "^2.29.4",
|
||||||
"vue": "^3.2.13",
|
"vue": "^3.2.13",
|
||||||
"vue-router": "^4.1.5",
|
"vue-router": "^4.1.5",
|
||||||
|
|||||||
@@ -30,4 +30,7 @@ body
|
|||||||
background-color: var(--bg-lavender-color)
|
background-color: var(--bg-lavender-color)
|
||||||
margin: 0
|
margin: 0
|
||||||
padding: 0
|
padding: 0
|
||||||
|
|
||||||
|
.flex
|
||||||
|
flex-wrap: nowrap !important
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -9,6 +9,9 @@ import "./assets/css/iconfonts.css";
|
|||||||
import { clientsServer } from "../server.js";
|
import { clientsServer } from "../server.js";
|
||||||
import { clickOutside } from "@/shared/clickOutside";
|
import { clickOutside } from "@/shared/clickOutside";
|
||||||
import store from "./store";
|
import store from "./store";
|
||||||
|
import { install } from "astra-ui";
|
||||||
|
|
||||||
|
const AstraUI = { install };
|
||||||
|
|
||||||
if (process.env.NODE_ENV === "development") {
|
if (process.env.NODE_ENV === "development") {
|
||||||
clientsServer({ environment: "development" });
|
clientsServer({ environment: "development" });
|
||||||
@@ -18,6 +21,7 @@ moment.locale("ru");
|
|||||||
|
|
||||||
createApp(App)
|
createApp(App)
|
||||||
.use(store)
|
.use(store)
|
||||||
|
.use(AstraUI)
|
||||||
.directive("click-outside", clickOutside)
|
.directive("click-outside", clickOutside)
|
||||||
.use(router, moment)
|
.use(router, moment)
|
||||||
.mount("#app");
|
.mount("#app");
|
||||||
|
|||||||
Reference in New Issue
Block a user