[Vuejs]-Vue warn : the runtime-only build of Vue where the template compiler is not available

0๐Ÿ‘

โœ…

@skirtle Answer correctly ! thank you ๐Ÿ™‚

babel.config.js

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

Leave a comment