Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/koumoul-dev/vue-openapi
OpenAPI viewer component for VueJS
https://github.com/koumoul-dev/vue-openapi
api material openapi openapi3 swagger vue vuejs
Last synced: 8 days ago
JSON representation
OpenAPI viewer component for VueJS
- Host: GitHub
- URL: https://github.com/koumoul-dev/vue-openapi
- Owner: koumoul-dev
- License: mit
- Created: 2016-11-30T23:56:46.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-12-06T10:40:42.000Z (11 months ago)
- Last Synced: 2024-10-29T08:04:11.448Z (16 days ago)
- Topics: api, material, openapi, openapi3, swagger, vue, vuejs
- Language: Vue
- Homepage:
- Size: 2.22 MB
- Stars: 90
- Watchers: 8
- Forks: 19
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# OpenAPI viewer component for VueJS
This [Vue.js](https://vuejs.org/) component is designed to easily browse and test a REST API described
with the [OpenAPI 3.0 Specification](https://github.com/OAI/OpenAPI-Specification) (formerly known as Swagger Specification). This component follows Google [Material Design](https://material.google.com/) principles and relies on the [Vue Material](https://github.com/marcosmoura/vue-material) framework. It also relies on [vue-resource](https://github.com/pagekit/vue-resource) to perform API requests.See it in action :
* https://koumoul.com/openapi-viewer/## Install
npm :
```console
$ npm install --save vue-openapi
```## Usage
```js
import Vue from 'vue'
import VueMaterial from 'vue-material'
import OpenApi from 'vue-openapi'
import 'vue-material/dist/vue-material.css'
import VueResource from 'vue-resource'import jsonApi from './swagger.json'
Vue.use(VueMaterial)
Vue.use(VueResource)new Vue({
el: '#app',
template: '',
data: () => ({
jsonApi: jsonApi,
queryParams: {
userId: 'john_doe'
},
headers: {
api_key: 'my_api_key'
}
}),
components: {
OpenApi
}
})
```## Develop
Run webpack in watch mode:
npm run dev
Then open test/index.html in your browser.
To switch between examples, modify the import "jsonApi" in test/app.js.
## License
[MIT License](license.md)
## Resources
* [Awesome OpenApi 3](https://github.com/Mermade/awesome-openapi3) lists various projects related to OpenApi 3.0.x
* [swagger2openapi](https://github.com/Mermade/swagger2openapi) lets you convert Swagger 2.0 definitions into OpenApi 3.0.x## Similar projects
This project has been inspired by the following projects :
* [angular-swagger-ui](https://github.com/Orange-OpenSource/angular-swagger-ui)
* [angular-swagger-ui-material](https://github.com/darosh/angular-swagger-ui-material)