Skip to content

Commit 782d8cc

Browse files
committed
↪️ Move and export ApiList and ApiForm on index
1 parent 6ba652b commit 782d8cc

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
import Vue from 'vue';
66
import axios from 'axios';
77

8+
import ApiForm from './ApiForm';
9+
import ApiList from './ApiList';
10+
811
const VueRest = {
912
install(Vue, options) {
1013
if (Vue.vueRestInstalled) {
@@ -38,4 +41,6 @@ const VueRest = {
3841
},
3942
};
4043

44+
export { ApiList, ApiForm };
45+
4146
export default VueRest;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-rest",
3-
"version": "0.1.23",
3+
"version": "0.1.25",
44
"description": "Plugin for using vue + axios for REST API consumption",
55
"author": "Kimura <joseduardo.kimura@gmail.com>",
66
"private": false,

0 commit comments

Comments
 (0)