Yeah you can use quasar UMD/standalone. Look up https://v1.quasar-framework.org/start/umd.
But I sure you quasar cli. Is a great experience, you won’t regret it
Yeah you can use quasar UMD/standalone. Look up https://v1.quasar-framework.org/start/umd.
But I sure you quasar cli. Is a great experience, you won’t regret it
https://medium.com/quasar-framework/quasar-1-0-reaching-for-the-stars-284e7716625a
According to the release note.
Slimming down
One last and major goal of Quasar 1.0’s component rework was to reduce the complexity of the components themselves. For instance, instead of having a QSearch and QAutocomplete, we now have only QSelect.
As for the QInput, you can find it in form component.
QUploader is great. U only need to see it with different eyes
What ever u want I can show you just describe what you want in details
You already have everything you need.
Use laravel as a back-end api and quasar as front-end. And you can deploy spa, pwa, mobile(android,iOS, many more ), windows app and what ever you can think of.
I can show you how to, if you want extra direction.
Quasar framework is an amazing framework and you guys just delivered a crazily awesome tool For developers.
Thank you quasar team and community
please provide your current code workflow for easy solution
export const clear_errors = (state, errors) => {
state.errors = “”
}
is the quickest way to go and just commit it when you need to clear state.errors
@rstoenescu @s-molinari. Great work. Thank you for your time
Create a mutation that call the state object (errors) and reinitialise it to null or " " .
Then commit the mutation on created hook of save and update form page.
I will write you the code if you still don’t get it.
This.$router.push("/home") or
This.$router.push({name: “home”})
Good luck
A visual representation would have been better so I will know what you are trying to achieve. But I think u should use q-toolbar in place of the layout B
This should do.
<q-layout-drawer
v-model=“drawerState”
:content-class="$q.theme === ‘mat’ ? ‘bg-grey-3’ : null"
>
<q-list no-border link inset-delimiter dense>
<q-list-header>Menu</q-list-header>
<q-item to="/foo">
<q-item-main label="Foo router"> </q-item-main>
</q-item>
</q-list>
</q-layout-drawer>
So I don’t see q-side-link on the QList sub components. So remove that line of code and add to="/foo" to the q-item without the exact
Can you show the code of what you have done so far. It helps in solving your problem
Use a named route. That is more effective.
Add name: ‘Index’, and name: ‘Blah’ in your route file. And access it using:
:to="{name: ‘Index’}"
:to="{name: ‘Blah’}"
please i need help on this, I’ve searched for hours and cant find a solution.
please how do i remove the keys(8,26 and root) and convert it into a tree structure for quasar tree component.
{ “8”: [
{ “id”: 14, “user_id”: 4, “post_id”: 17, “parent_id”: 8, “content”: “ok”,“created_at”: “2018-04-19 08:55:23”,
“user”: { “id”: 4, “name”: “mentor”}
},
{ “id”: 55, “user_id”: 4, “post_id”: 17, “parent_id”: 8, “content”: “hello”, “created_at”: “2018-10-28 20:43:25”,
“user”: { “id”: 4, “name”: “mentor”}
}
],
“26”: [
{ “id”: 27, “user_id”: 4, “post_id”: 17, “parent_id”: 26, “content”: “goood”, “created_at”: “2018-05-26 10:27:45”,
“user”: { “id”: 4, “name”: “mentor”}
},
{ “id”: 56, “user_id”: 4, “post_id”: 17, “parent_id”: 26, “content”: “ok ok ok”, “created_at”: “2018-10-28 20:43:36”,
“user”: { “id”: 4, “name”: “mentor”}
},
{ “id”: 57, “user_id”: 4, “post_id”: 17, “parent_id”: 26, “content”: “hhfhsjfdjhffd”, “created_at”: “2018-10-28 20:44:06”,
“user”: { “id”: 4, “name”: “mentor”}
}
],
“root”: [
{ “id”: 8, “user_id”: 4, “post_id”: 17, “parent_id”: null, “content”: “hello”,“created_at”: “2018-04-18 17:51:25”,
“user”: { “id”: 4, “name”: “mentor”}
},
{ “id”: 26, “user_id”: 4, “post_id”: 17, “parent_id”: null, “content”: “hello”,“created_at”: “2018-05-26 10:27:37”,
“user”: { “id”: 4, “name”: “mentor” }
}
]
}
thanks
@edudesouza this helps a lot
thanks
hello.
so after setting up Quasar I18n.
using {{ $q.i18n.label.close }} works, but the language file is not on my src/en-us, so where did it get the language file from and how do i edit the file or get it into my project.
how do i use the default language file that comes with quasar :
export default {
failed: ‘Action failed’,
success: ‘Action was successful’
}
using {{ $q.i18n.success }} doesn’t work even though my src/en-us has it on the file
thank you
i really don’t understand q-uploader . how do i use it with other form input, then when i click on save then it upload along with my input fields.
I’m really confuse whats is the best way to use it.
thank you