I'm trying to integrate Vue into a Backbone.js app. What is the official way for outside code to call a method in Vue? Is it something like: ``` // inside the Backbone.View this.vue = new Vue({ methods: { myFunc : function(){} } } ); this.vue.methods.myFunc.call(this.vue); ``` Thanks!