ipsos-components
Version:
Material Design components for Angular
24 lines (20 loc) • 495 B
text/typescript
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {Component} from '@angular/core';
({
moduleId: module.id,
selector: 'slider-demo',
templateUrl: 'slider-demo.html',
})
export class SliderDemo {
demo: number;
val: number = 50;
min: number = 0;
max: number = 100;
disabledValue = 0;
}