File tree 3 files changed +4
-4
lines changed
source/frontend/composables
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file.
7
7
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
8
8
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
9
9
10
- ## [ v2.1.2 ] - 2023-10-07
10
+ ## [ v2.1.3 ] - 2023-10-07
11
11
12
12
### Fixed
13
13
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @scriptpilot/vueuse" ,
3
- "version" : " 2.1.2 " ,
3
+ "version" : " 2.1.3 " ,
4
4
"main" : " source/frontend/composables/index.js" ,
5
5
"dependencies" : {
6
6
"uuid" : " ^9.0.0" ,
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ import { v4 as uuid } from 'uuid'
2
2
3
3
export function useMySQLAPI ( options ) {
4
4
5
- options = options || { }
6
- const apiUrl = options . apiUrl || import . meta. env . DEV ? 'http://localhost:8000/api.php' : '/api.php'
5
+ options = options || { }
6
+ const apiUrl = options . apiUrl || ( import . meta. env . DEV ? 'http://localhost:8000/api.php' : '/api.php' )
7
7
8
8
function apiRequest ( { path, method = 'GET' , data = undefined } ) {
9
9
return new Promise ( ( resolve , reject ) => {
You can’t perform that action at this time.
0 commit comments