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
});
Source:stackexchange.com