vue-openapi-bootstrap
Version:
OpenAPI viewer component for VueJS
38 lines (28 loc) • 710 B
Markdown
## Screenshots


## Usage
```javascript
<template>
<vue-openapi-bootstrap :openapi="openapi"></vue-openapi-bootstrap>
</template>
<script>
import vueOpenapiBootstrap from 'vue-openapi-bootstrap/src/vue-openapi-bootstrap'
export default {
components: {vueOpenapiBootstrap},
data () {
return {
openapi: {}
}
}
}
</script>
```
## Build Setup
``` bash
# install dependencies
npm install
# build for production with minification
npm run build
```
For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).