@aurelia-material-components/top-app-bar
v0.0.0-ALPHA-0.0.13
Published
> See [Aurelia Material Components Plugin](https://github.com/dragoscirjan/aurelia-material-components-web)
Downloads
5
Maintainers
Readme
Aurelia Material Component - Top App Bar
Install
npm i -S @aurelia-material-components/top-app-bar
Use
// under Aurelia Main JS
export function configure(aurelia) {
aurelia.use
.standardConfiguration();
aurelia.use
// ...
.plugin(PLATFORM.moduleName('@aurelia-material-components/top-app-bar'), (config) => {
// only if you want to use containerless components
config.useContainerless();
});
aurelia.start();
}