You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The README.md is far too long for the getting-started user. I understand that it is used as documentation as well but still it is solely missing the getting-started/quick-start section that usually requires users to:
Install the module
Register it (with some required configuration)
Use it in the app.
For the Storyblok module for Nuxt the steps can be combined into:
The simplest way is by using the useAsyncStoryblok one-liner composable (it's autoimported) and passing as a first parameter a name of your content page from Storyblok (in this case, our content page name is vue, by default you get a content page named home):
Later on, we can have configuration, api options, etc. But it is crucial to have this getting started at the top so that the users can easily try it out. It should help having less questions and issues about really basic stuff such as this one :)
The text was updated successfully, but these errors were encountered:
The README.md is far too long for the getting-started user. I understand that it is used as documentation as well but still it is solely missing the getting-started/quick-start section that usually requires users to:
For the Storyblok module for Nuxt the steps can be combined into:
Install
@storyblok/nuxt
:npm install @storyblok/nuxt # yarn add @storyblok/nuxt
Add following code to modules section of
nuxt.config.js
and replace the accessToken with API token from Storyblok space.The simplest way is by using the
useAsyncStoryblok
one-liner composable (it's autoimported) and passing as a first parameter a name of your content page from Storyblok (in this case, our content page name isvue
, by default you get a content page namedhome
):Later on, we can have configuration, api options, etc. But it is crucial to have this getting started at the top so that the users can easily try it out. It should help having less questions and issues about really basic stuff such as this one :)
The text was updated successfully, but these errors were encountered: