space.html
828 Bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title></title>
<style>
.container>div {
margin-bottom: 10px;
}
</style>
</head>
<body>
<div ng-app="esNgAntd" ng-controller="mainCtrl">
<div class="container" style="padding: 50px">
<es-space>
<es-button type="primary">AAA</es-button>
<es-button>BBB</es-button>
<es-button>CCC</es-button>
</es-space>
</div>
</div>
<script src="https://cdn.staticfile.org/angular.js/1.2.28/angular.min.js"></script>
<script src="../dist/ng-antd.js"></script>
<script>
angular
.module("esNgAntd")
.controller("mainCtrl", function ($scope) {
});
</script>
</body>
</html>