JSFiddle - React, Tailwind, and code Playground
by maciejgurban
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.5/angular.js"></script>
<div ng-app="Batcave" >
<foo-rock ng-model="foo"></foo-rock>
</div>
JavaScript
const app = angular.module("Batcave", []);
app.component("fooRock", {
template: '<input type="text" />',
require: {
ngModelCtrl: "ngModel"
},
bindings: {
ngModel: "<"
},
controller: function() {
console.log(1);
}
});