Someone has to take the step back 
new Vue({
delimiters: ['<<', '>>'],
}
var customTags = [ '<%', '%>' ];
Mustache.render(template, view, {}, customTags);
Mustache.tags = customTags;
Mustache.render uses the customTags once, Mustache.tags would set them for the whole duration (until you set something else)