You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-3Lines changed: 19 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,23 @@ This project adheres to a [Contributor Code of Conduct](CODE_OF_CONDUCT.md).
39
39
By participating in this project and its community, you are expected to uphold
40
40
this code.
41
41
42
-
## Command to running this project for local testing
43
-
42
+
## Commands for running this project for local testing
43
+
```bash
44
+
# Start the Symfony local server
44
45
symfony local:server:start
45
-
yarn encore dev
46
+
```
47
+
48
+
```bash
49
+
# Compile and watch assets (including Vue.js components)
50
+
yarn encore dev --watch
51
+
```
52
+
53
+
## Vue.js Integration
54
+
This project uses Vue.js for interactive UI components. Vue components are located in the `assets/vue/` directory and are mounted to specific DOM elements:
55
+
56
+
-`App.vue` is mounted to the element with ID `vue-app`
57
+
58
+
To add new Vue components:
59
+
1. Create the component in the `assets/vue/` directory
0 commit comments