A Vue.js wrapper component for ReDoc.
npm install @hnluu8/vue-redoc-wrapper --save
Pass the OpenAPI definitions of your API to the spec-or-spec-url attribute of the component. The attribute value can be given as an object or as a URL to the JSON or YAML file for your API documentation.
<template>
<div id="app">
<redoc-wrapper :spec-or-spec-url="'http://petstore.swagger.io/v2/swagger.json'" :options="redocOptions"></redoc-wrapper>
</div>
</template>
<script>
import RedocWrapper from '@hnluu8/vue-redoc-wrapper'
export default {
name: 'app',
components: {
RedocWrapper
},
data() {
return {
// https://github.com/Redocly/redoc#redoc-options-object
redocOptions: {
hideDownloadButton: false
}
}
}
}
</script>
The component exposes two props: specOrSpecUrl (required) and options (optional). Please visit the documentation for ReDoc's standalone version for more information on their usage.
vue serve demo/components/SpecUrlExample.vue