Skip to content

Commit f994b62

Browse files
committed
Updated the client dependencies in the readme.
1 parent c729226 commit f994b62

File tree

1 file changed

+7
-16
lines changed

1 file changed

+7
-16
lines changed

README.md

+7-16
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ cd myapp
2121
Add the plugin dependency to the project:
2222
```groovy
2323
// myapp/build.gradle
24-
2524
dependencies {
2625
//...
2726
// Replace $inertiaPluginVersion with a suitable release version for your project, or define it in ~/myapp/gradle.properties
@@ -31,7 +30,7 @@ dependencies {
3130
```
3231
To add the client dependencies and workflow to a Grails project, create the following files **(Vue 3 example)**:
3332
```javascript
34-
// myapp/package.json (versions @ 2022-10-11)
33+
// myapp/package.json (versions @ 2023-03-01)
3534
```
3635
```json
3736
{
@@ -43,21 +42,18 @@ To add the client dependencies and workflow to a Grails project, create the foll
4342
"build": "vite build"
4443
},
4544
"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"
4947
},
5048
"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"
5351
}
5452
}
5553
```
5654
```javascript
5755
// myapp/vite.config.js
58-
5956
import { fileURLToPath, URL } from 'node:url'
60-
6157
import { defineConfig } from 'vite'
6258
import vue from '@vitejs/plugin-vue'
6359

@@ -88,9 +84,8 @@ export default defineConfig(({ command }) => ({
8884
```
8985
```javascript
9086
// myapp/src/main/javascript/main.js
91-
9287
import { createApp, h } from 'vue'
93-
import { createInertiaApp } from '@inertiajs/inertia-vue3'
88+
import { createInertiaApp } from '@inertiajs/vue3'
9489

9590
createInertiaApp({
9691
resolve: async (name) => {
@@ -120,7 +115,6 @@ npm install
120115
In your controllers, you can now select which JavaScript Page Component to render and pass the values of the props to it.
121116
```groovy
122117
// myapp/grails-app/controllers/myapp/BookController.groovy
123-
124118
package myapp
125119

126120
class BookController {
@@ -136,11 +130,8 @@ class BookController {
136130
Here is an example Vue 3 Single File Component to that will render the books as a list.
137131
```vue
138132
<!-- myapp/src/main/javascript/Pages/Books/Index.vue -->
139-
140133
<script setup>
141-
const props = defineProps({
142-
books: Array
143-
})
134+
defineProps({ books: Array })
144135
</script>
145136
<template>
146137
<ul>

0 commit comments

Comments
 (0)