Skip to content

Commit

Permalink
fix(docs): api explore QFile 404 #16569 (#16571)
Browse files Browse the repository at this point in the history
  • Loading branch information
dongwa authored Nov 10, 2023
1 parent 44b87e2 commit 96e80cb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/src/assets/links.components.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const components = [
{ name: 'Dialogs', description: 'To show actions and info only when needed', tag: 'panel', path: 'dialog' },
{ name: 'Editor WYSIWYG', description: 'To write text and style it directly', tag: 'other', path: 'editor' },
{ name: 'Expansion Panels', short: 'expansionitem', description: 'To show hidden extra info and actions', tag: 'panel', path: 'expansion-item' },
{ name: 'File Pickers', description: 'To access and choose a file from users\' device', tag: 'media', path: 'file-picker' },
{ name: 'File Pickers', description: 'To access and choose a file from users\' device', tag: 'media', path: 'file' },
{ name: 'Floating Action Button', short: 'fab', description: 'To display the page primary action', tag: 'button' },
{ name: 'Forms', description: 'A system to submit validated inputs', tag: 'input', path: 'form' },
{ name: 'Form Fields', description: 'Wrapper for your own custom form elements', tag: 'input', path: 'field' },
Expand Down
2 changes: 1 addition & 1 deletion docs/src/assets/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ export default [
},
{
name: 'File picker',
path: 'file-picker'
path: 'file'
},
{
name: 'Form',
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion docs/src/pages/vue-components/input.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ You'll be using `v-model.number` (notice the `number` modifier) along with `type
#### Input of file type

::: tip ALTERNATIVES
**Instead of using a QInput with `type="file"`, you might want to use [QFile](/vue-components/file-picker) picker instead or even [QUploader](/vue-components/uploader)**. However, should you wish to use QInput, please read the warning below.
**Instead of using a QInput with `type="file"`, you might want to use [QFile](/vue-components/file) picker instead or even [QUploader](/vue-components/uploader)**. However, should you wish to use QInput, please read the warning below.
:::

::: warning
Expand Down
4 changes: 2 additions & 2 deletions docs/src/pages/vue-components/uploader.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ desc: The QUploader Vue component is a way for the user to upload files to a bac
keys: QUploader
examples: QUploader
related:
- /vue-components/file-picker
- /vue-components/file
---

Quasar supplies a way for you to upload files through the QUploader component.

::: tip
If all you want is an input file, you might want to consider using [QFile](/vue-components/file-picker) picker component instead.
If all you want is an input file, you might want to consider using [QFile](/vue-components/file) picker component instead.
:::

<doc-api file="QUploader" />
Expand Down

0 comments on commit 96e80cb

Please sign in to comment.