Mapo is a nuxt module that helps in the creation of Administration Panels.
npm install mapomodulemapomodule dependency to your projectsh
yarn add --dev mapomodule # or npm install --save-dev mapomodule
`
Add mapomodule to the modules section of nuxt.config.js
`js
{
modules: [
// Simple usage
'mapomodule', // With options
['mapomodule', { / module options / }]
]
}
`
You can add options also from top level nuxt.config.js`js
{
modules: [
'mapomodule'
],
mapo: {
/ module options /
}
}
`
Features
$mapo core sevices to provide set of utilities.
- Injects mapo components in the default nuxt component discovery.
- Adds meta information to router module from nuxt pages.š Read more from the documentation.
How to contribute
1. Clone this repository
2. Install dependencies using
yarn bootstrap
3. Start development server using yarn dev$3
Always write some documentation regarding the components you're developing.
Our documentation is generated directly from code thanks to @Vuepress, @Vuese and @jsdoc-to-markdown.1. Generate doc
yarn doc:gen
2. Preview vuepress doc yarn doc:dev`