0.0.0-ALPHA-0.0.13 • Published 6 years ago

@aurelia-material-components/button v0.0.0-ALPHA-0.0.13

Weekly downloads
13
License
Apache-2.0
Repository
github
Last release
6 years ago

Aurelia Material Component - Button

See Aurelia Material Components Plugin

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();
}