您正在运行 Vue 的 esm-bundler 构建。建议配置你的bundler

SPQ*_*Inc 10 webpack vue.js laravel-mix vuejs3 laravel-mix-vue3

我在 Vue 3 项目中收到此错误:

您正在运行 Vue 的 esm-bundler 构建。建议将您的捆绑器配置为使用布尔文字显式替换功能标志全局变量,以便在最终捆绑包中进行适当的摇树。有关更多详细信息,请参阅http://link.vuejs.org/feature-flags

webpack.mix.js

const mix = require ('laravel-mix');
const path = require ('path');

mix.webpackConfig ({
    output: {
        chunkFilename: 'js/chunks/[name].[chunkhash].js'
    },
    module: {
        rules: [
            {
                test: /node_modules(?:\/|\\).+\.js$/,
                loader: 'babel-loader',
                options: {
                    presets: [['@babel/preset-env', {targets: 'last 2 versions, ie >= 10'}]],
                    plugins: ['@babel/plugin-transform-destructuring', '@babel/plugin-proposal-object-rest-spread', '@babel/plugin-transform-template-literals'],
                    babelrc: false
                }
            },
            {
                enforce: 'pre',
                test: /\.(js|vue)$/,
                loader: 'eslint-loader',
                exclude: /node_modules/
            }
        ]
    },
    resolve: {
      alias: {
        vue: "vue/dist/vue.esm-bundler.js"
      },
    },
    optimization: {
        providedExports: false,
        sideEffects: false,
        usedExports: false
    }
});

mix.js ("resources/js/entry-point.js", "public/js").vue({})
.postCss ("resources/css/app.css", "public/css", [
    require ("tailwindcss"),
]);

mix.extract (['vue']);

if (mix.inProduction ()) {
    mix
    .version ();
}
Run Code Online (Sandbox Code Playgroud)

在这种情况下,我是否设置都没有关系mix.webpackConfig

这是package.json

{
  "private": true,
  "scripts": {
    "dev": "npm run development",
    "development": "mix",
    "watch": "mix watch",
    "watch-poll": "mix watch -- --watch-options-poll=1000",
    "hot": "mix watch --hot",
    "prod": "npm run production",
    "production": "mix --production"
  },
  "devDependencies": {
    "@vue/compiler-sfc": "^3.0.5",
    "autoprefixer": "^10.2.4",
    "axios": "^0.21",
    "cross-env": "^5.1",
    "css-loader": "^5.0.2",
    "eslint-plugin-vue": "^7.5.0",
    "file-loader": "^6.2.0",
    "laravel-mix": "^6.0.6",
    "mini-css-extract-plugin": "^1.3.6",
    "postcss": "^8.2.6",
    "resolve-url-loader": "^3.1.2",
    "tailwindcss": "^2.0.3",
    "url-loader": "^4.0.0",
    "vue-loader": "^16.1.2",
    "babel-eslint": "^10.1.0",
    "eslint": "^7.19.0",
    "eslint-config-google": "^0.14.0",
    "eslint-loader": "^4.0.2"
  },
  "dependencies": {
    "vue": "^3.0.5",
    "vue-router": "4.0.3"
  }
}
Run Code Online (Sandbox Code Playgroud)

我阅读了提供的链接,但没有找到解决此问题的方法。

ton*_*y19 15

链接的文档指定了两个可配置的标志:

  • __VUE_OPTIONS_API__ (启用/禁用选项 API 支持,默认值:true)
  • __VUE_PROD_DEVTOOLS__ (在生产中启用/禁用 devtools 支持,默认值:false)

对于 Webpack,使用DefinePlugin来设置这些标志:

const webpack = require('webpack')

mix.webpackConfig ({
  plugins: [
    new webpack.DefinePlugin({
      __VUE_OPTIONS_API__: false,
      __VUE_PROD_DEVTOOLS__: false,
    }),
  ],
})
Run Code Online (Sandbox Code Playgroud)


mik*_*kep 6

webpack.config.js

const Webpack = require('webpack');

module.exports = (env, options) => {
    return {
        ...,
        module : {
            ...,
        },
        plugins : [
            ...,
            new Webpack.DefinePlugin({ __VUE_OPTIONS_API__: true, __VUE_PROD_DEVTOOLS__: true }), // to remove warn in browser console: runtime-core.esm-bundler.js:3607 Feature flags __VUE_OPTIONS_API__, __VUE_PROD_DEVTOOLS__ are not explicitly defined...
            ...,
        ],
        ...,
    };
};
Run Code Online (Sandbox Code Playgroud)

或者替代方法是在应用程序入口文件中添加 2 行:

globalThis.__VUE_OPTIONS_API__ = true;
globalThis.__VUE_PROD_DEVTOOLS__ = false;
Run Code Online (Sandbox Code Playgroud)