[Vuejs]-How to fix Laravel Blade, Vuejs and Handlebars.js delimiter (mustache) issue?

0👍

It’s because your domain variable is not defined and you are trying to use it in your HTML. You should initialize the variable and then use it. try this:

const app = new Vue({
   el: '#app', 
   delimiters: ["<%","%>"],
   domain: null
});

Leave a comment