@aurelia-material-components/button
v0.0.0-ALPHA-0.0.13
Published
> See [Aurelia Material Components Plugin](../../../README.md)
Downloads
26
Maintainers
Readme
Aurelia Material Component - Button
Install
npm i -S @aurelia-material-components/button
Use
// under Aurelia Main JS
export function configure(aurelia) {
aurelia.use
.standardConfiguration();
aurelia.use
// ...
.plugin(PLATFORM.moduleName('@aurelia-material-components/button'), (config) => {
// only if you want to use containerless components
config.useContainerless();
});
aurelia.start();
}