Skip to content

Commit 4cf6a22

Browse files
committed
Remove Vuetify & install Wave UI. 🤘
1 parent dd5ea8a commit 4cf6a22

File tree

5 files changed

+26
-201
lines changed

5 files changed

+26
-201
lines changed

package-lock.json

Lines changed: 6 additions & 173 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,10 @@
3838
"sass-loader": "^10.2.0",
3939
"simple-syntax-highlighter": "^1.4.8",
4040
"vue": "^2.6.14",
41-
"vue-cli-plugin-vuetify": "^2.4.1",
4241
"vue-router": "^3.5.2",
4342
"vue-scrollto": "^2.20.0",
4443
"vue-template-compiler": "^2.6.14",
45-
"vuetify": "^2.5.5",
46-
"vuetify-loader": "^1.7.2"
44+
"wave-ui": "^1.36.1"
4745
},
4846
"keywords": [
4947
"carousel",

src/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import 'core-js/stable'
33
import 'regenerator-runtime/runtime'
44

55
import Vue from 'vue'
6-
import vuetify from './plugins/vuetify'
6+
import WaveUI from './plugins/wave-ui'
77

88
import '@fortawesome/fontawesome-free/css/fontawesome.css'
99
import '@fortawesome/fontawesome-free/css/brands.css'
@@ -15,6 +15,6 @@ Vue.config.productionTip = false
1515

1616
new Vue({
1717
router,
18-
vuetify,
18+
WaveUI,
1919
render: h => h(App)
2020
}).$mount('#app')

src/plugins/vuetify.js

Lines changed: 0 additions & 23 deletions
This file was deleted.

src/plugins/wave-ui.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import Vue from 'vue'
2+
import WaveUI from 'wave-ui'
3+
import 'wave-ui/dist/wave-ui.css'
4+
5+
Vue.use(WaveUI)
6+
7+
export default new WaveUI({
8+
iconsLigature: 'md',
9+
colors: {
10+
primary: '#ff5252',
11+
secondary: '#42b983',
12+
maintext: '#999',
13+
darktext: '#444',
14+
lightertext: '#ccc',
15+
lightgrey: '#eee'
16+
}
17+
})

0 commit comments

Comments
 (0)