The international conference on the API Platform Framework
Be part of the very first meeting with the FrankenPHP elePHPant plushies in Lille.
This edition is shaping up to be our biggest yet — secure your seat now before we sell out.
Create a Quasar Framework application using quasar-cli:
$ quasar create my-app
$ cd my-app
$ yarn global add @api-platform/client-generator
In the app directory, generate the files for the resource you want:
$ generate-api-platform-client -g quasar https://demo.api-platform.com src/ --resource foo
# Replace the URL by the entrypoint of your Hydra-enabled API
# Omit the resource flag to generate files for all resource types exposed by the API
The code is ready to be executed! Register the generated routes in src/router/routes.js
import fooRoutes from '../generated/router/foo';
const routes = [
{
path: '/',
component: () => import('layouts/MyLayout.vue'),
children: [
...fooRoutes
],
and store modules in the src/store/index.js
file.
// Replace "foo" with the name of the resource type
import foo from '../generated/store/modules/foo/';
export default function(/* { ssrContext } */) {
const Store = new Vuex.Store({
modules: {
foo,
},
Make sure to update the quasar.conf.js
file with the following:
framework: {
components: [
'QTable',
'QTh',
'QTr',
'QTd',
'QAjaxBar',
'QBreadcrumbs',
'QBreadcrumbsEl',
'QSpace',
'QInput',
'QForm',
'QSelect',
'QMarkupTable',
'QDate',
'QTime',
'QCheckbox',
'QPopupProxy'
...
],
directives: [..., 'ClosePopup'],
plugins: ['Notify'],
config: {
...
notify: {
position: 'top',
multiLine: true,
timeout: 0,
},
},
You can also help us improve the documentation of this page.
Made with love by
Les-Tilleuls.coop can help you design and develop your APIs and web projects, and train your teams in API Platform, Symfony, Next.js, Kubernetes and a wide range of other technologies.
Learn more