var vm = new Vue({ el: '#app', template: '
{{c.data.value}}
', data: {c: counter}, methods: { incr: function() { counter.add(1); }, }, });