switch to local material design icons
This commit is contained in:
6
cateditor/package-lock.json
generated
6
cateditor/package-lock.json
generated
@ -8197,6 +8197,12 @@
|
|||||||
"object-visit": "^1.0.0"
|
"object-visit": "^1.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"material-design-icons-iconfont": {
|
||||||
|
"version": "4.0.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/material-design-icons-iconfont/-/material-design-icons-iconfont-4.0.5.tgz",
|
||||||
|
"integrity": "sha512-ByJJ1yz8+RfCx2uNiC5WjVCR7K3UWRb8ytWV3RMaoFRzQLNr/J5x7+Wg1+3OlIZahNXrId9Hu+BfXfQIo01v7g==",
|
||||||
|
"dev": true
|
||||||
|
},
|
||||||
"md5.js": {
|
"md5.js": {
|
||||||
"version": "1.3.5",
|
"version": "1.3.5",
|
||||||
"resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
|
"resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
|
||||||
|
|||||||
@ -21,6 +21,7 @@
|
|||||||
"eslint": "^5.8.0",
|
"eslint": "^5.8.0",
|
||||||
"eslint-plugin-vue": "^5.0.0",
|
"eslint-plugin-vue": "^5.0.0",
|
||||||
"fibers": "^3.1.1",
|
"fibers": "^3.1.1",
|
||||||
|
"material-design-icons-iconfont": "^4.0.5",
|
||||||
"sass": "^1.17.2",
|
"sass": "^1.17.2",
|
||||||
"sass-loader": "^7.1.0",
|
"sass-loader": "^7.1.0",
|
||||||
"stylus": "^0.54.5",
|
"stylus": "^0.54.5",
|
||||||
|
|||||||
@ -2,6 +2,7 @@ import Vue from 'vue'
|
|||||||
import './plugins/vuetify'
|
import './plugins/vuetify'
|
||||||
import App from './App.vue'
|
import App from './App.vue'
|
||||||
import store from './store'
|
import store from './store'
|
||||||
|
import 'material-design-icons-iconfont/dist/material-design-icons.css' // Ensure you are using css-loader
|
||||||
|
|
||||||
Vue.config.productionTip = false
|
Vue.config.productionTip = false
|
||||||
|
|
||||||
|
|||||||
@ -15,5 +15,5 @@ Vue.use(Vuetify, {
|
|||||||
options: {
|
options: {
|
||||||
customProperties: true
|
customProperties: true
|
||||||
},
|
},
|
||||||
iconfont: 'mdi',
|
iconfont: 'md'
|
||||||
})
|
})
|
||||||
|
|||||||
@ -10,7 +10,6 @@
|
|||||||
<link href="{% static 'img/favicon.ico' %}" rel="shortcut icon" />
|
<link href="{% static 'img/favicon.ico' %}" rel="shortcut icon" />
|
||||||
<title>Django Vue Integration</title>
|
<title>Django Vue Integration</title>
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900">
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900">
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Material+Icons">
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<noscript>
|
<noscript>
|
||||||
|
|||||||
Reference in New Issue
Block a user