1.0.3 • Published 7 years ago

swagger-vue v1.0.3

Weekly downloads
1,980
License
MIT
Repository
github
Last release
7 years ago

swagger-vue

Swagger to JS & Vue & Axios Codegen

Installation

npm install swagger-vue

Example

const swaggerGen = require('swagger-vue')
const jsonData = require('../api-docs.json')
const fs = require('fs')
const path = require('path')

let opt = {
  swagger: jsonData,
  moduleName: 'api',
  className: 'api'
}
const codeResult = swaggerGen(opt)
fs.writeFileSync(path.join(__dirname, '../dist/api.js'), codeResult)

Links

License

MIT