Skip to content

Commit c240ae7

Browse files
author
User
committed
updated project
1 parent 1c2ce46 commit c240ae7

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

APIBuilder.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
export default class APIBuilder {
2+
constructor () {
3+
this.category = ''
4+
this.name = ''
5+
this.options = [
6+
{
7+
type: '',
8+
readOption: '',
9+
details: '',
10+
example: ''
11+
}
12+
]
13+
}
14+
}

vue-help.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const V = require('vorpal')()
2+
3+
4+
5+
V.delimiter('vue-help$').show()
6+
V.command('vm.$data', 'Outputs').action(function(args, callback){
7+
this.log('<div v-for="d in data></div>')
8+
callback()
9+
})

0 commit comments

Comments
 (0)