forked from vuejs/devtools-v6
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Serialization & Types improvements (vuejs#523)
* More fault tolerant * Display stores with CustomValue API * Dsiplay VueRouter instances with CustomValue API * CustomValue API: new 'tooltip' option, supports functions, component def * Test router & store * Open in editor Component defs * Fix vuejs#528 * Comments * Encode cache clear * Large array test * CustomValue API: respect fields order * Switch props and data sections to follow style guide * New 'grey' and 'red' classes DataField: allowing to reproduce current available styling using CustomValue API * Add support for Map and Set - Fix vuejs#349 Initial PR vuejs#490 by AdamNiederer * Set and Map test case * Fix Map key/value inverted * Optimizations * Fix tooltip * DataField style changes * Env: added isLinux & isWindows + function 'f' style fixes * gps-not-fixed icon is ugly on Windows * Style tweaks * Typo * Added more function test cases
- Loading branch information
Guillaume Chau
authored
Jan 22, 2018
1 parent
000a632
commit 842aa35
Showing
16 changed files
with
532 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
export function getCustomRouterDetails (router) { | ||
return { | ||
_custom: { | ||
type: 'router', | ||
display: 'VueRouter', | ||
value: { | ||
options: router.options, | ||
currentRoute: router.currentRoute | ||
}, | ||
fields: { | ||
abstract: true | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.