Angular.js app.controller("demoCtrl", [ "$scope", "$timeout","$modal", "socketer", "authenticationSvc", "chatRoom", function($scope, $timeout, $modal, socketer, authenticationSvc, chatRoom) { $scope.*** $scope.*** }]); $scopeにいろいろくっつけていくやつ Vue.js var app =new Vue({ el: "#demo", data: { message: "Hello World" }, methods: { method: function(){/* 処理 */} }, ready: function(){} }); Vue.js var app =new

