Last active
January 6, 2018 14:08
-
-
Save Akryum/f2e08df47088d5be0f933b67e90261dc to your computer and use it in GitHub Desktop.
Vue devtools CustomValue API
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
const sendThisToDevtools = { | |
_custom: { | |
type: 'set', | |
display: 'Set[3]', | |
readOnly: true, | |
value: [1, 2, { | |
_custom: { | |
type: 'map', | |
display: 'Map[3]', | |
value: { a: 42, b: 'foo' } | |
} | |
}] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment