@iankibetsh/vue-streamline 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/vue-streamline.es.js +418 -378
- package/dist/vue-streamline.umd.js +5 -5
- package/package.json +1 -1
- package/src/App.vue +12 -10
- package/src/composables/useStreamline.js +82 -22
- package/src/main.js +2 -2
package/README.md
CHANGED
|
@@ -46,5 +46,5 @@ tasksServices.getTasks().then(response => {
|
|
|
46
46
|
|
|
47
47
|
You can get the url to an action/method in the service by calling the getActionUrl method on the service object passing the action name and any parameters
|
|
48
48
|
```js
|
|
49
|
-
tasksService.getActionUrl('getTasks',
|
|
49
|
+
tasksService.getActionUrl('getTasks', 'active')
|
|
50
50
|
```
|