In this chapter we implement parts of the admin dashboard from earlier with the progressive JavaScript framework VueJS. It’s important to keep in mind that this is not a tutorial on VueJS itself. Rather, it’s more about implementing Bulma with your VueJS application.
If you need more help with VueJS head over to the VueJS official documentation, which like Bulma’s documentation is very good and is an easy read as far as documentation is concerned.
In this chapter, you will be using Vue’s command line tool, vue-cli
. To get started with vue-cli
, run the following commands:
npm install -g vue-cli vue init <template> <project-name> cd <project-name> npm install npm run dev
This chapter will ...
No credit card required