[Vuejs]-How to access variables handled by angularjs, using vuejs?

0👍

You can simply do:

var projectCtrl = $("#ProjectController").scope();

EDIT

if the `project’ directive has isolate scope, then you’ll have to enter its scope by using

var projectDirectiveCtrl = $("#ProjectController project").isolateScope();

or

var $project = angular.element("[id='ProjectController']").scope();

since jqLite doesn’t support # selector

Leave a comment