0.1.15 • Published 4 years ago

@hnluu8/vue-redoc-wrapper v0.1.15

Weekly downloads
199
License
MIT
Repository
-
Last release
4 years ago

vue-redoc-wrapper

A Vue.js wrapper component for ReDoc.

npm package

Installation

npm install @hnluu8/vue-redoc-wrapper --save

Usage

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'"></redoc-wrapper>
  </div>
</template>

<script>
import RedocWrapper from '@hnluu8/vue-redoc-wrapper'

export default {
  name: 'app',
  components: {
    RedocWrapper
  }
}
</script>

Component Props

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.

Demo

vue serve demo/components/SpecUrlExample.vue
0.1.15

4 years ago

0.1.14

4 years ago

0.1.11

4 years ago

0.1.12

4 years ago

0.1.13

4 years ago

0.1.10

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago