angular1 scaffold

by leozcx

HTML

<div ng-controller='test as test'>
  <share></share>
  <share></share>
</div>

JavaScript

(function() {
  angular.module('demo', [])
    .controller('test', function($scope) {
      $scope.msg = 'msg1';
    })
    .directive('share', function() {
      return {
        restrict: 'AE',
        template: '<div><input ng-model="msg"/><span>{{msg}}</span></div>'
      }
    })
})();