Answers for "add bulma to vue"

1

add bulma to vue

vue create appname --preferably vue2

cd appname

npm install bulma buefy

create a main scss file with source './assets/scss/main.scss'

fill that file with the variables you want ,,, see bulma docs for example ,,,

import that file in your main.js file: import './assets/scss/main.scss'

you now have bulma in your website, now to add buefy

In your main.js file, add the following
import Buefy from 'buefy'
Vue.use(Buefy)
Posted by: Guest on July-31-2021
0

vue bulma

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css">
Posted by: Guest on March-22-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language