Symfony + Vue:从不加载 Vue 组件?

Symfony + Vue: Never loading Vue components?

我正在将 Vue 应用到 Symfony 4 项目中,并且我遵循了我能找到的所有规则。出于某种原因,我无法显示任何 Vue 组件 - 我什至无法从我的 app.js 文件夹中执行 console.log。

这是app.js:

var Vue = require('vue');
import App from './components/App'
console.log('testing')
new Vue({
    el: '#app',
    template: '<App/>',
    components: { App },
});

这是webpack.config:

var Encore = require('@symfony/webpack-encore');

安可 // 将存储编译后的资源的目录 .setOutputPath('public/build/') // public 网络服务器用来访问输出路径的路径 .setPublicPath('/构建') // 只有 CDN 或子目录部署需要 //.setManifestKeyPrefix('build/')

/*
 * ENTRY CONFIG
 *
 * Add 1 entry for each "page" of your app
 * (including one that's included on every page - e.g. "app")
 *
 * Each entry will result in one JavaScript file (e.g. app.js)
 * and one CSS file (e.g. app.css) if you JavaScript imports CSS.
 */
.addEntry('app', './assets/js/app.js')
//.addEntry('page1', './assets/js/page1.js')
//.addEntry('page2', './assets/js/page2.js')

// will require an extra script tag for runtime.js
// but, you probably want this, unless you're building a single-page app
.enableSingleRuntimeChunk()

/*
 * FEATURE CONFIG
 *
 * Enable & configure other features below. For a full
 * list of features, see:
 * https://symfony.com/doc/current/frontend.html#adding-more-features
 */
.cleanupOutputBeforeBuild()
.enableBuildNotifications()
.enableSourceMaps(!Encore.isProduction())
// enables hashed filenames (e.g. app.abc123.css)
.enableVersioning(Encore.isProduction())

// enables Sass/SCSS support
// .enableSassLoader()
.enableSassLoader(function(options) {}, {
    resolveUrlLoader: false
})

// uncomment if you use TypeScript
//.enableTypeScriptLoader()

// uncomment if you're having problems with a jQuery plugin
.autoProvidejQuery()
.enableVueLoader()
;

module.exports = Encore.getWebpackConfig();

这是我的模板:

            {% block content %}
             <div id="app"></div>
            {% endblock %}

就像我说的,即使 console.log 直接来自 app.js 它也不会在控制台中执行任何操作。我确定构建正在获取 app.js 文件,因为在我的源代码中我看到 app.####.js 正在加载(哈希版本)并且它包含我编写的代码。

确保在模板中包含 {{ encore_entry_script_tags('app') }}