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 all 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
6 changes: 3 additions & 3 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 @@ -295,7 +295,7 @@ Une autre façon d'écrire vos composants est d'utiliser les [composants monofic
</template>

<script>
import Greeting './Greeting.vue'
import Greeting from './Greeting.vue'

export default {
components: {
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