Skip to content

Update components directory location #69

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 9, 2022
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion 2.x/features/password-confirmation.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Once the user has confirmed their password, they will not be required to re-ente
If you are using the Inertia stack, you should wrap the user interface element that triggers an action requiring password confirmation with the `ConfirmsPassword` Vue component provided by Jetstream. To get started, import the `ConfirmsPassword` component into your page:

```js
import JetConfirmsPassword from './Jetstream/ConfirmsPassword'
import JetConfirmsPassword from './Components/ConfirmsPassword'

export default {
components: {
Expand Down
2 changes: 1 addition & 1 deletion 2.x/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Next, you should customize the SVGs located in the `resources/views/vendor/jetst

### Inertia

If you are using the Inertia stack, you should customize the SVGs located in `resources/js/Jetstream/AuthenticationCardLogo.vue`, `resources/js/Jetstream/ApplicationLogo.vue`, and `resources/js/Jetstream/ApplicationMark.vue`.
If you are using the Inertia stack, you should customize the SVGs located in `resources/js/Components/AuthenticationCardLogo.vue`, `resources/js/Components/ApplicationLogo.vue`, and `resources/js/Components/ApplicationMark.vue`.

After customizing these components, you should rebuild your assets:

Expand Down
2 changes: 1 addition & 1 deletion 2.x/stacks/inertia.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Before using the Inertia stack, you are strongly encouraged to review the entire

## Components

When we created the Jetstream Inertia stack, a variety of Vue components (buttons, panels, inputs, modals) were created to assist in creating UI consistency and ease of use. You are free to use or not use these components. All of these components are located within your application's `resources/js/Jetstream` directory.
When we created the Jetstream Inertia stack, a variety of Vue components (buttons, panels, inputs, modals) were created to assist in creating UI consistency and ease of use. You are free to use or not use these components. All of these components are located within your application's `resources/js/Components` directory.

You may gain insight into how to use these components by reviewing their usage within Jetstream's existing pages located within your application's `resources/js/Pages` directory.

Expand Down