Vue CLI 3 plugin to pluginize your Vue project
npm install vue-cli-plugin-p11n
Vue CLI 3 plugin to pluginize your Vue project
> p11n = pluginization
- Setup the plugin development codes for JavaScript or TypeScript
- Build for production code with rollup
- Adjust some files to distribute your Vue plugin
- Adjust to the environment where developable your Vue plugin with App.vue
- Provide demonstrate environment for your Vue plugin
- Setup the initial documentation environment with VuePress
- Automatically insert node_modules as rollup externals
``sh`
vue create vue-your-plugin
Install the plugin into your project:
`sh`
cd vue-your-plugin
vue add p11n
at your plugin, you can make it external using dependencies of package.json.example the below:
`json
{
...
"dependencies": {
"axios": "^0.18.0"
},
...
}
``Detailed changes for each release are documented in the CHANGELOG.md.
Please make sure to read the Issue Reporting Checklist before opening an issue. Issues not conforming to the guidelines may be closed immediately.
Please make sure to read the Contributing Guide before making a pull request.