JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app="MyApp">
  <div ng-controller="Ctrl2">
      <img my-src />
  </div>
</div>

JavaScript

angular.module('MyApp', [])
    .controller('Ctrl2', function($scope) {
    })
    .directive('mySrc', function($interval, dateFilter) {
        return {
        restrict: 'A',
        link: function ( scope, elem, attrs ) {
            elem.attr('src', "test1");
        }
      };
    });