AngularJS 按钮 v-button
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/LukaszWatroba/v-button
软件介绍
v-button 是 AngularJS 可按按钮,并有繁忙的指示器。
使用示例:
angular.module('myApp', ['vButton'])
.controller('MyCtrl', function ($scope) {
$scope.isBusy = false;
$scope.buttonClick = function () {
$scope.isBusy = !$scope.isBusy;
};
});