[Vuejs]-Material-components-web for vue js

0👍

I didn’t get the Material Components Web working with the Vue framework. But I did found another light-weight material design framework i.e. Material Design Lite.

Note: It is not specific to any framework. It lets you add Material Design look to your website developed in any framework

You can easily get started with a wide variety of options like cdn, bower, npm or even by downloading the files.

0👍

Material Components Web has modular architecture. Each component or API is distributed as a separate package. It means that you can use them separately, although there are some dependencies.

Also there is "root" package – material-components-web, which just references all other packages.

By default, when you add a package, it will not be included in your app. You’ll need to import component’s SCSS and optionally JavaScript. Basically like you would use any other component.

Reference this Vue app template as an example. As you can see here, it references only subset of MDC’s components/APIs.

Leave a comment