This error pops up if you try to use non-precompiled Vue templates.
To fix this, set the runtimeCompiler option in vue.config.js to true:
module.exports = {
runtimeCompiler: true
}
Note that this will include additional JavaScript payload into your distribution.
Alternatively, you can use precompiled Vue templates.