Skip to content Skip to sidebar Skip to footer

Vue Warn : The Runtime-only Build Of Vue Where The Template Compiler Is Not Available

I'm testing 'v-runtime-template' component in App.vue which made by Vue-Cli enviornment. And there is some problems... Imgur1 It seems that v-runtime-template component couldn't r

Solution 1:

@skirtle Answer correctly ! thank you :)

babel.config.js

module.exports = {
    presets: [
        '@vue/app'
    ],
    configureWebpack: {
        resolve: {
            alias: {
                vue$: "vue/dist/vue.common",
            },
        },
    },
    // vue 
}

Post a Comment for "Vue Warn : The Runtime-only Build Of Vue Where The Template Compiler Is Not Available"