Untitled

 VueJs and Phalcon templates

Phalcon uses {{ }} for variables, therefore there is a conflict

Create compiler

$compiler->addFunction('ng', function($input) {
        return '"{{".' . $input . '."}}"';
});

Change vuejs delimiter

Vue.config.delimiters = ['${', '}']

more