@@ -21,7 +21,6 @@ cd myapp
21
21
Add the plugin dependency to the project:
22
22
``` groovy
23
23
// myapp/build.gradle
24
-
25
24
dependencies {
26
25
//...
27
26
// Replace $inertiaPluginVersion with a suitable release version for your project, or define it in ~/myapp/gradle.properties
@@ -31,7 +30,7 @@ dependencies {
31
30
```
32
31
To add the client dependencies and workflow to a Grails project, create the following files ** (Vue 3 example)** :
33
32
``` javascript
34
- // myapp/package.json (versions @ 2022-10-11 )
33
+ // myapp/package.json (versions @ 2023-03-01 )
35
34
```
36
35
``` json
37
36
{
@@ -43,21 +42,18 @@ To add the client dependencies and workflow to a Grails project, create the foll
43
42
"build" : " vite build"
44
43
},
45
44
"dependencies" : {
46
- "@inertiajs/inertia" : " ^0.11.0" ,
47
- "@inertiajs/inertia-vue3" : " ^0.6.0" ,
48
- "vue" : " ^3.2.40"
45
+ "@inertiajs/vue3" : " ^1.0.2" ,
46
+ "vue" : " ^3.2.47"
49
47
},
50
48
"devDependencies" : {
51
- "@vitejs/plugin-vue" : " ^3.1.2 " ,
52
- "vite" : " ^3 .1.7 "
49
+ "@vitejs/plugin-vue" : " ^4.0.0 " ,
50
+ "vite" : " ^4 .1.4 "
53
51
}
54
52
}
55
53
```
56
54
``` javascript
57
55
// myapp/vite.config.js
58
-
59
56
import { fileURLToPath , URL } from ' node:url'
60
-
61
57
import { defineConfig } from ' vite'
62
58
import vue from ' @vitejs/plugin-vue'
63
59
@@ -88,9 +84,8 @@ export default defineConfig(({ command }) => ({
88
84
` ` `
89
85
` ` ` javascript
90
86
// myapp/src/main/javascript/main.js
91
-
92
87
import { createApp , h } from ' vue'
93
- import { createInertiaApp } from ' @inertiajs/inertia- vue3'
88
+ import { createInertiaApp } from ' @inertiajs/vue3'
94
89
95
90
createInertiaApp ({
96
91
resolve: async (name ) => {
@@ -120,7 +115,6 @@ npm install
120
115
In your controllers, you can now select which JavaScript Page Component to render and pass the values of the props to it.
121
116
` ` ` groovy
122
117
// myapp/grails-app/controllers/myapp/BookController.groovy
123
-
124
118
package myapp
125
119
126
120
class BookController {
@@ -136,11 +130,8 @@ class BookController {
136
130
Here is an example Vue 3 Single File Component to that will render the books as a list.
137
131
` ` ` vue
138
132
<!-- myapp/ src/ main/ javascript/ Pages/ Books/ Index .vue -->
139
-
140
133
< script setup>
141
- const props = defineProps ({
142
- books: Array
143
- })
134
+ defineProps ({ books: Array })
144
135
< / script>
145
136
< template>
146
137
< ul>
0 commit comments