1vue create appname --preferably vue2
2
3cd appname
4
5npm install bulma buefy
6
7create a main scss file with source './assets/scss/main.scss'
8
9fill that file with the variables you want ,,, see bulma docs for example ,,,
10
11import that file in your main.js file: import './assets/scss/main.scss'
12
13you now have bulma in your website, now to add buefy
14
15In your main.js file, add the following
16import Buefy from 'buefy'
17Vue.use(Buefy)
1<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@5.8.55/css/materialdesignicons.min.css">