build mock views
This commit is contained in:
parent
b0ed2c68f9
commit
44d47db0ad
10 changed files with 1963 additions and 9 deletions
|
|
@ -5,8 +5,28 @@ import router from "./router";
|
|||
import PrimeVue from "primevue/config";
|
||||
import { globalSettings } from "./globalSettings";
|
||||
|
||||
// Vuetify
|
||||
import "vuetify/styles";
|
||||
import { createVuetify } from "vuetify";
|
||||
import * as components from "vuetify/components";
|
||||
import * as directives from "vuetify/directives";
|
||||
import { mdi } from "vuetify/iconsets/mdi";
|
||||
import "@mdi/font/css/materialdesignicons.css";
|
||||
|
||||
const vuetify = createVuetify({
|
||||
components,
|
||||
directives,
|
||||
icons: {
|
||||
defaultSet: "mdi",
|
||||
sets: {
|
||||
mdi,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
createApp(App)
|
||||
.use(router)
|
||||
.use(vuetify)
|
||||
.use(PrimeVue, {
|
||||
theme: {
|
||||
options: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue