Google fonts removed
This commit is contained in:
@@ -13,6 +13,8 @@
|
|||||||
"test:unit": "vue-cli-service test:unit"
|
"test:unit": "vue-cli-service test:unit"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@fontsource/roboto": "^4.5.8",
|
||||||
|
"@mdi/font": "^7.2.96",
|
||||||
"core-js": "^3.29.1",
|
"core-js": "^3.29.1",
|
||||||
"vue": "^2.7.14",
|
"vue": "^2.7.14",
|
||||||
"vue-i18n": "^8.28.2",
|
"vue-i18n": "^8.28.2",
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: {
|
plugins: {
|
||||||
autoprefixer: {},
|
autoprefixer: {}
|
||||||
},
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,8 +23,6 @@
|
|||||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||||
<link rel="icon" href="<%= BASE_URL %>favicon.png">
|
<link rel="icon" href="<%= BASE_URL %>favicon.png">
|
||||||
<title>Vuetify Material Dashboard - by Creative Tim</title>
|
<title>Vuetify Material Dashboard - by Creative Tim</title>
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900">
|
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css">
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<noscript>
|
<noscript>
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<router-view />
|
<router-view/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style lang="sass">
|
||||||
|
@import '../node_modules/@fontsource/roboto/index.css'
|
||||||
|
</style>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'App'
|
name: 'App'
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import Vue from 'vue'
|
|||||||
import Vuetify from 'vuetify/lib'
|
import Vuetify from 'vuetify/lib'
|
||||||
import i18n from '@/i18n'
|
import i18n from '@/i18n'
|
||||||
import '@/sass/overrides.sass'
|
import '@/sass/overrides.sass'
|
||||||
|
import '@mdi/font/css/materialdesignicons.css'
|
||||||
|
|
||||||
Vue.use(Vuetify)
|
Vue.use(Vuetify)
|
||||||
|
|
||||||
|
|||||||
@@ -49,12 +49,6 @@ export default new Router({
|
|||||||
name: 'Google Maps',
|
name: 'Google Maps',
|
||||||
path: 'maps/google-maps',
|
path: 'maps/google-maps',
|
||||||
component: () => import('@/views/dashboard/maps/GoogleMaps')
|
component: () => import('@/views/dashboard/maps/GoogleMaps')
|
||||||
},
|
|
||||||
// Upgrade
|
|
||||||
{
|
|
||||||
name: 'Upgrade',
|
|
||||||
path: 'upgrade',
|
|
||||||
component: () => import('@/views/dashboard/Upgrade')
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ Vue.use(Vuex)
|
|||||||
export default new Vuex.Store({
|
export default new Vuex.Store({
|
||||||
state: {
|
state: {
|
||||||
barColor: 'rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)',
|
barColor: 'rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)',
|
||||||
barImage: 'https://demos.creative-tim.com/material-dashboard/assets/img/sidebar-1.jpg',
|
barImage: '',
|
||||||
drawer: null
|
drawer: null
|
||||||
},
|
},
|
||||||
mutations: {
|
mutations: {
|
||||||
|
|||||||
1
target/npmlist.json
Normal file
1
target/npmlist.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"version":"2.2.0","name":"vuetify-material-dashboard","dependencies":{"core-js":{"version":"3.29.1"},"vue-i18n":{"version":"8.28.2"},"vue-router":{"version":"3.6.5"},"vue":{"version":"2.7.14"},"vuetify":{"version":"2.6.14"},"vuex":{"version":"3.6.2"}}}
|
||||||
Reference in New Issue
Block a user