angular1 scaffold

by leozcx

HTML

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

JavaScript

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