Skip to content
This repository has been archived by the owner on Apr 8, 2021. It is now read-only.

Fix typo #265

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/dev/comment-integrer-vue-js-symfony.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ var Encore = require('@symfony/webpack-encore');
Encore
.setOutputPath('public/build/')
.setPublicPath('/build')
.addEntry('ats', './assets/app.js')
.addEntry('app', './assets/app.js')

// ...

Expand Down Expand Up @@ -324,7 +324,7 @@ new Vue({ render: h => h(App) }).$mount('#app')
<body>
<div id="app"></div>

{{ encore_entry_script_tags('cooptation') }}
{{ encore_entry_script_tags('app') }}
</body>
</html>
{{< /highlight >}}
Expand Down